2

I would like to know where will my error logged for mysql server. As of now I just see one log that is in /var/log/mysqld.log. I saw some have .err files too am I missing something here? What would the ib_logfile contain will they contain those errors too? But we cant view them right?

RolandoMySQLDBA
  • 185,223
  • 33
  • 326
  • 536
newbie14
  • 979
  • 3
  • 18
  • 25

1 Answers1

2

The log buffer writes redo log information to ib_logfile0 and ib_logfile1 for transactional purposes only. There is nothing text readable within those files.

The file /var/log/mysqld.log is the main error-logging mechanism built in mysql. Anything additional would probably be in /var/log/messages.

RolandoMySQLDBA
  • 185,223
  • 33
  • 326
  • 536