我尝试通过mysql命令行应用程序连接到MariaDB 10xx的本地安装,但是尽管指定了主机和端口,但我收到错误,客户端无法通过unix套接字连接。
这是我的my.cnf
:
⟩ sudo vi /opt/local/etc/mariadb-10.1/my.cnf
# Use default MacPorts settings
!include /opt/local/etc/mariadb-10.1/macports-default.cnf
[mysqld]
socket=/private/tmp/mysqld.sock
port=3306
log_error=/private/tmp/mysql_error.log
log_warnings=3
general-log
general-log-file=/private/tmp/mariadb_queries.log
log-output=file
这是我使用的命令行:
mysql -u root --host localhost --port 3306 --password
这就是错误:
⟩ mysql -u root --host localhost --port 3306 --password
Enter password:
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/opt/local/var/run/mariadb-10.1/mysqld.sock' (2 "No such file or directory")
我试图检查MariaDB是否正在侦听TCP连接。
答案 0 :(得分:0)
所以我在MariaDB IRC频道中询问并且显然将localhost传递给MariaDB会导致它使用unix套接字。用--host localhost
替换--host 127.0.0.1
就可以了。