Mini Shell
# cat /etc/logrotate.d/mysql
#
# This logname can be set in /etc/my.cnf
# by setting the variable "err-log"
# in the [safe_mysqld] section as follows:
#
# [safe_mysqld]
# err-log=/var/lib/mysql/mysqld.log
#
# If the root user has a password you have to create a
# /root/.my.cnf configuration file with the following
# content:
#
# [mysqladmin]
# password = <secret>
# user= root
#
# where "<secret>" is the password.
#
# ATTENTION: This /root/.my.cnf should be readable ONLY
# for root !
/var/log/mysqld.log {
# create 600 mysql mysql
notifempty
size 100M
rotate 2
missingok
postrotate
/bin/touch /var/log/mysqld.log.parse
sudo /usr/bin/mysqladmin flush-logs
endscript
}
Zerion Mini Shell 1.0