由于此错误,我无法启动 mysql:
ERROR! MySQL manager or server PID file could not be found!
Starting MySQL.. ERROR! Manager of pid-file quit without updating file.
我该如何解决这个问题?
由于此错误,我无法启动 mysql:
ERROR! MySQL manager or server PID file could not be found!
Starting MySQL.. ERROR! Manager of pid-file quit without updating file.
我该如何解决这个问题?
根据操作系统的不同,MySQL 日志将位于不同的位置,并不总是
my.cnf
.Debian
例如将它们放入/var/log/syslog
CentOS/Redhat
将它们放入/var/lib/mysql/__hostname__.err
等等
但实际上你可以不使用
service
or直接启动 MySQL 守护进程init.d
,直接执行命令。这会将您的任何/所有错误打印到stdout
例如。
mysqld
通常,对于您遇到的错误,这是因为 MySQL 守护程序能够写入 pid 文件的权限问题。
Debian
将它们放入/var/run/mysqld/mysqld.pid
CentOS/Redhat
将它们放入/var/lib/mysql/mysql.pid