MySQL 5.6开启全查询日志报错 Starting MySQL. ERROR! The server quit without updating PID file

今天因为要查询一个SQL语句的调用的地方,在生产上开启了全查询日志,一直还以为在my.cnf只要这样写即可:

log=/home/logs/mysql.log

但重启后发现报

Starting MySQL. ERROR! The server quit without updating PID file (/home/data/mysql//localhost.localdomain.pid) 错误

后来发现注释刚加的代码后,能正常启动mysql。

正确配置的方式如下:

即在my.cnf中的[mysqld]中添加了以下两行代码:

general_log=ON

general_log_file=/home/logs/mysql.log

保存后重启发现能正常启动,并能正常记录全部的查询日志与更新日志。

你可能感兴趣的:(MySQL 5.6开启全查询日志报错 Starting MySQL. ERROR! The server quit without updating PID file)