2

我不知道这个问题是否特定于我的设置,但是当我添加该行时

log = /var/log/mysql.log

到复制的 my-large.cnf 文件的 mysqld 部分并尝试重新启动 mysql 服务器我收到错误

Starting MySQL. ERROR! The server quit without updating PID file (/var/lib/mysql/centos-server.pid).

我创建了文件 /var/log/mysql.log,将其所有者和组设置为 mysql,并将 /var/log 的权限设置为 777(目前)

我在 centos 上,使用 mysql 5.6.5 m8(开发版本)。

这是 my.cnf 文件的片段

[mysqld]
port            = 3306
socket          = /var/lib/mysql/mysql.sock
skip-external-locking
key_buffer_size = 256M
max_allowed_packet = 1M
table_open_cache = 256
sort_buffer_size = 1M
read_buffer_size = 1M
read_rnd_buffer_size = 4M
myisam_sort_buffer_size = 64M
thread_cache_size = 8
query_cache_size= 16M
# Try number of CPU's*2 for thread_concurrency
thread_concurrency = 8
log = /var/log/mysql.log
4

1 回答 1

2

似乎 log 指令已过时,而 my.cnf 需要该指令

general-log = 1

如果这样指定,日志文件将在默认位置创建(在 centos 上是 /var/lib/mysql/centos-server.log)

于 2012-07-20T12:06:19.283 回答