我只是在我的WordPress网站上手动安装了一个新的插件,在MySQL中为插件的条目创建了一个表,当我尝试打开使用该插件的页面时,我收到了这个错误:
DataTables warning (table id = 'to-do_list'): An error occurred while
connecting to the database 'wordpress_clouse'. The error reported by the
server was: SQLSTATE[HY000] [2002] Can't connect to local MySQL server
through socket '/var/lib/mysql/mysql.sock' (2)
这是我的配置文件中列出的MySQL信息(我认为是正确的):
"type" => "Mysql",
"user" => "root",
"pass" => "******",
"host" => "localhost",
"port" => "",
"db" => "******"
这是/etc/my.cnf文件的主要内容:
# The following options will be passed to all MySQL clients
[client]
#port = 3306
socket = /var/run/mysqld/mysqld.sock
# The MySQL server
[mysqld]
#port = 3306
socket = /var/run/mysqld/mysqld.sock
log_error = mysqld.err
skip-networking
我已经查看了类似错误的答案,但没有一个解决方案适合我。任何帮助将不胜感激。
答案 0 :(得分:8)
这是帮助我解决这个问题的原因,那就是我服务器上的实际文件目录是 /var/lib/mysql/mysql.sock ,而不是/ var / lib / mysqld / mysqld。袜子:
[client]
部分(如果您没有[client]
部分,然后添加)。它应该是这样的:[客户]
插座=的/ var / lib中/ MySQL的/的mysql.sock
错误应该消失了。非常感谢@alvits指出我正确的方向。
答案 1 :(得分:1)
遇到同样的错误,发现是因为我还没有开始服务。
执行命令systemctl start mariadb
,然后使用命令mysql
连接到MariaDB服务器并且它有效。
希望有所帮助