]> git.pld-linux.org Git - packages/mysql.git/blobdiff - mysql.logrotate
- rel 4; don't try to fix symlinks that are correct now
[packages/mysql.git] / mysql.logrotate
index c52e7701198c479501a22578c4ae59ebdcf49c9b..4bb78ceb9acd84287db5a16baef4e66400b9d1a3 100644 (file)
@@ -1,8 +1,34 @@
-/var/log/mysqld.log {
-       prerotate
-               mysqladmin flush-logs
-       endscript
+# This section is used from mysqld.conf for logrotation.
+# Be sure that the password in config matches the actual one.
+#
+# ATTENTION: The mysqld.conf should be readable ONLY for *system* root!
+#
+# [mysqladmin]
+# user = mysql_sysadmin
+# password = <secret>
+#
+# where "<secret>" is the password.
+#
+# You must do this for every active cluster defined in /etc/mysql/clusters.conf
+
+/var/log/mysql/query.log
+/var/log/mysql/mysqld.log
+/var/log/mysql/slow.log
+/var/log/mysql/update*
+{
+       olddir /var/log/archive/mysql
+       notifempty
+       missingok
+       create 640 mysql mysql
+       sharedscripts
+
+       # NOTE:
+       # if you run the rotation less often than "daily" then the
+       # "expire-logs-days" mysqld server parameter may no longer work as you
+       # expect
+       daily
+
        postrotate
-               mysqladmin flush-logs
+               /sbin/service mysql flush-logs
        endscript
 }
This page took 0.027251 seconds and 4 git commands to generate.