在安装MySQL数据库时,可能会遇到如下问题:

Starting MySQL... ERROR! The server quit without updating PID file (/data/mysql/mysql.pid).

在/etc/my.cnf配置文件中,找到错误日志配置的信息

log_error = /data/mysql/mysql-error.log

查看mysql-error.log文件,会发现以下报错信息

[ERROR] Can't open the mysql.plugin table. Please run mysql_upgrade to create it.
[ERROR] unknown option '--ent]'
[ERROR] Aborting

解决方法:

# vi /etc/my.cnf

添加一行 skip-grant-tables

这时,再重新启动服务

service  mysqld  restart

Logo

更多推荐