How to disable MySQL logs, delete mysql logs, and disable mysql Log Deletion
By default, log files are enabled for MySQL installed in the one-click LNMP installation package,
If data operations are frequent, a large number of logs are generated,
Generate a mysql-bin.0000 * similar file under/usr/local/mysql/var,
In addition, the disk space is usually from dozens of MB to several GB, and the entire hard disk space is even worse,
Mysql is always unable to start or report errors, such as feedback from vps Forum users.
How to disable MySQL Log function: delete logs: Run:/usr/local/mysql/bin/mysql-u root-p
Enter the password to log on and run the following command: reset master;
Enter quit to exit mysql command mode.
Permanently disable MySQL logs: Modify the/etc/my. cnf file,
Find log-bin search = mysql-binbinlog_format = mixed and add #,
Comment it out, and then execute/etc/init. d/mysql restart.
Or directly go to the directory/usr/local/mysql/var/to delete the log file!