From 285600589dcab09b84e97fb90d3692f569e0e966 Mon Sep 17 00:00:00 2001 From: Tim Sehn Date: Wed, 17 Aug 2022 11:00:08 -0700 Subject: [PATCH] Update README to reflect socket interface release Socket interface supported but not on by default. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index abd1477b3b..7f435de6df 100644 --- a/README.md +++ b/README.md @@ -219,7 +219,7 @@ MySQL comes with a MySQL server called `mysqld` and a MySQL client called `mysql mysql Ver 8.0.29 for macos12.2 on x86_64 (Homebrew) ``` -Now, to connect the `mysql` client to Dolt, you have to force the MySQL client through the TCP interface by passing in a host and port. The default is the socket interface which Dolt does not support. The MySQL client also requires you specify a user, in this case `root`. +Now, to connect the `mysql` client to Dolt, you have to force the MySQL client through the TCP interface by passing in a host and port. The default is the socket interface which Dolt supports, but is not on by default. The MySQL client also requires you specify a user, in this case `root`. ```bash % mysql --host 127.0.0.1 --port 3306 -uroot