在使用Linux系統下的MySQL數據庫時,我們通常需要查看MySQL日志來了解數據庫運行情況。本文將介紹Linux系統下如何查看MySQL日志。
1. 查看MySQL二進制日志
$ mysqlbinlog [二進制日志文件名]
2. 查看MySQL錯誤日志
$ tail -f /var/log/mysql/error.log
3. 查看MySQL查詢日志
$ nano /etc/mysql/mysql.conf.d/mysqld.cnf #在mysqld節點中添加以下內容 general_log_file = /var/log/mysql/mysql.log general_log = 1 $ service mysql restart $ tail -f /var/log/mysql/mysql.log
4. 查看MySQL慢查詢日志
$ nano /etc/mysql/mysql.conf.d/mysqld.cnf #在mysqld節點中添加以下內容 slow_query_log = 1 slow_query_log_file = /var/log/mysql/mysql-slow.log long_query_time = 2 $ service mysql restart $ tail -f /var/log/mysql/mysql-slow.log
通過以上方法,我們可以方便地查看MySQL的各種日志,以便更好地管理和維護數據庫。