发新话题
打印

mysql 开启日志

mysql 开启日志

mysql有以下几种日志:
错误日志: -log-err
查询日志: -log
慢查询日志: -log-slow-queries
更新日志: -log-update
二进制日志: -log-bin

在mysql的安装目录下,打开my.ini,在后面加上上面的参数,保存后重启mysql服务就行了。
例如:
#Enter a name for the binary log. Otherwise a default name will be used.
#log-bin=
#Enter a name for the query log file. Otherwise a default name will be used.
#log=
#Enter a name for the error log file. Otherwise a default name will be used.
log-error=
#Enter a name for the update log file. Otherwise a default name will be used.
#log-update=

上面只开启了错误日志,要开其他的日志就把前面的“#”去掉

查看命令:

①show variables like 'log_%';查看所有的log命令

②show variables like 'log_bin';查看具体的log命令

=================================

linux MySQL 日志管理开启错误日志 (在[safe_mysqld]项下添加)

# vi /etc/my.cnf[safe_mysqld]err-log=/var/log/mysqld/err.log

开启常规日志和更新日志 (在[mysqld]项下添加)

# vi /etc/my.cnf[mysqld]log=/var/log/mysqld/log.loglog-update=/var/log/mysqld/update.log创建日志文件并设置权限

# mkdir /var/log/mysqld

# touch /var/log/mysqld/err.log /var/log/mysqld/log.log /var/log/mysqld/update.log# chown -R mysql.mysql /var/log/mysqld

# service mysqld restart说明:错误日志包含了服务器写入标准错误输出设备的所有消息,同时还包括了mysql服务的启动和关闭事件常规日志用来记录有关mysql服务器运行的常规信息.

包括用户的连接、查询及其他各种时间更新日志用来记录修改数据库的查询信息,包括所有涉及数据库修改的SQl语句的查询记录建议调试结束后关闭日志

TOP

发新话题