MySQL: Log Files in Linux / UNIX / BSD

by on April 16, 2009 · 0 comments· last updated at April 16, 2010

Can you tell me where are MySQL error and other log files are located under Linux / UNIX / BSD operating systems?

MySQL Server manages access to the MySQL data directory that contains databases and tables. The data directory is also the default location for other information such as log files and status files.

MySQL Log File Location Under Different Linux Distributions

  1. Redhat / RHEL / CentOS / Fedora Linux - /var/log/mysqld.log
  2. Debian / Ubuntu Linux - /var/log/mysql.log
  3. FreeBSD - /var/db/mysql/`hostname`.err (if your hostname is db2.nixcraft.com, than log file name should be /var/db/mysql/db2.nixcraft.com.err

How Do I View MySQL Log Files?

Use the following commands as root user:

 
tail -f /var/log/mysql.log
grep 'something' /var/log/mysql.log
less /var/log/mysql.log
 


You should follow me on twitter here or grab rss feed to keep track of new changes.

Featured Articles:

{ 0 comments… add one now }

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <kbd> <blockquote> <pre> <a href="" title="">

Tagged as: , , , , , , , , , , , , , ,

Previous Faq:

Next Faq: