Good afternoon,
we are trying to have access to our slow query log file at “/var/log/mysql/localhost-slow.log” but it looks like the file is empty. The “my.cnf” file says “!includedir /etc/my.cnf.d”, and inside that directory we have the following files:
mysql-clients.cnf;
server.cnf;
tokudb.cnf;
Looking at the “server.cnf” file it looks like it’s set properly to write slow queries logs:
#
# These groups are read by MariaDB server.
# Use it for options that only the server (but not clients) should see
#
# See the examples of server my.cnf files in /usr/share/mysql/
#
# this is read by the standalone daemon and embedded servers
[server]
# this is only for the mysqld standalone daemon
[mysqld]
slow-query-log = 1
slow-query-log-file = /var/log/mysql/localhost-slow.log
long_query_time = 1
log-queries-not-using-indexes
# this is only for embedded server
[embedded]
# This group is only read by MariaDB-5.5 servers.
# If you use the same .cnf file for MariaDB of different versions,
# use this group for options that older servers don't understand
[mysqld-5.5]
# These two groups are only read by MariaDB servers, not by MySQL.
# If you use the same .cnf file for MySQL and MariaDB,
# you can put MariaDB-only options here
[mariadb]
[mariadb-5.5]
Any idea on what could be the issue? We’ve tried to add the following:
[mysqld]
slow-query-log = 1
slow-query-log-file = /var/log/mysql/localhost-slow.log
long_query_time = 1
log-queries-not-using-indexes
directly into my.cnf and then restarting through service mysql restart but it didn’t work?
Thanks in advance for any help.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
mkdir /var/log/mysql
touch /var/log/mysql/log-slow-queries.log
chown mysql:mysql -R /var/log/mysql
I had the same problem but after google I got the code from http://stackoverflow.com/questions/11606972/how-can-i-enable-slow-query-log-on-my-server It is working.
Have you login to your server via ssh and type those commands?
1.make dir mkdir /var/log/mysql
2.create empty file touch /var/log/mysql/localhost-slow.log
3.set permission for user mysql chown mysql:mysql -R /var/log/mysql
4.then restart mysql service mysql restart
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.