Nagios/MySQL 错误
我收到来自 Nagios 的停机警报,称主机上的 mysql 已关闭。我登录主机,在mysql error.log文件中发现如下错误。解决此问题的正确步骤是什么?
root@ubuntu:/var/log# tail -f mysql/error.log
101202 11:09:21 [ERROR] Can't open the mysql.plugin table. Please run
mysql_upgrade to create it.
101202 11:09:21 InnoDB: Started; log sequence number 0 44233
101202 11:09:21 [ERROR] /usr/sbin/mysqld: Can't find file: './mysql/host.frm'
(errno: 13)
101202 11:09:21 [ERROR] Fatal error: Can't open and lock privilege tables:
Can't find file: './mysql/host.frm' (errno: 13)
101202 11:09:51 [Note] Plugin 'FEDERATED' is disabled.
/usr/sbin/mysqld: Can't find file: './mysql/plugin.frm'
(errno: 13)
101202 11:09:51 [ERROR] Can't open the mysql.plugin table. Please run
mysql_upgrade to create it.
101202 11:09:52 InnoDB: Started; log sequence number 0 44233
101202 11:09:52 [ERROR] /usr/sbin/mysqld: Can't find file: './mysql/host.frm'
(errno: 13)
101202 11:09:52 [ERROR] Fatal error: Can't open and lock privilege tables:
Can't find file: './mysql/host.frm' (errno: 13)
101202 11:10:22 [Note] Plugin 'FEDERATED' is disabled.
/usr/sbin/mysqld: Can't find file: './mysql/plugin.frm'
(errno: 13)
101202 11:10:22 [ERROR] Can't open the mysql.plugin table. Please run
mysql_upgrade to create it.
101202 11:10:22 InnoDB: Started; log sequence number 0 44233
101202 11:10:22 [ERROR] /usr/sbin/mysqld: Can't find file: './mysql/host.frm'
(errno: 13)
101202 11:10:22 [ERROR] Fatal error: Can't open and lock privilege tables:
Can't find file: './mysql/host.frm' (errno: 13)
Ireceived a downtime alert from Nagios that mysql was down on a host. I logged in to the host and found the following error in the mysql error.log file. What are the proper steps to troubleshoot this?
root@ubuntu:/var/log# tail -f mysql/error.log
101202 11:09:21 [ERROR] Can't open the mysql.plugin table. Please run
mysql_upgrade to create it.
101202 11:09:21 InnoDB: Started; log sequence number 0 44233
101202 11:09:21 [ERROR] /usr/sbin/mysqld: Can't find file: './mysql/host.frm'
(errno: 13)
101202 11:09:21 [ERROR] Fatal error: Can't open and lock privilege tables:
Can't find file: './mysql/host.frm' (errno: 13)
101202 11:09:51 [Note] Plugin 'FEDERATED' is disabled.
/usr/sbin/mysqld: Can't find file: './mysql/plugin.frm'
(errno: 13)
101202 11:09:51 [ERROR] Can't open the mysql.plugin table. Please run
mysql_upgrade to create it.
101202 11:09:52 InnoDB: Started; log sequence number 0 44233
101202 11:09:52 [ERROR] /usr/sbin/mysqld: Can't find file: './mysql/host.frm'
(errno: 13)
101202 11:09:52 [ERROR] Fatal error: Can't open and lock privilege tables:
Can't find file: './mysql/host.frm' (errno: 13)
101202 11:10:22 [Note] Plugin 'FEDERATED' is disabled.
/usr/sbin/mysqld: Can't find file: './mysql/plugin.frm'
(errno: 13)
101202 11:10:22 [ERROR] Can't open the mysql.plugin table. Please run
mysql_upgrade to create it.
101202 11:10:22 InnoDB: Started; log sequence number 0 44233
101202 11:10:22 [ERROR] /usr/sbin/mysqld: Can't find file: './mysql/host.frm'
(errno: 13)
101202 11:10:22 [ERROR] Fatal error: Can't open and lock privilege tables:
Can't find file: './mysql/host.frm' (errno: 13)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
找出 MySQL 找不到其表的原因。进入MySQL数据目录并查找mysql子目录(对应于
mysql
数据库,其中包含用户、进程、权限等内容)。也许有人删除了mysql
数据库。也许有人用指向错误数据目录的文件覆盖了您的 my.cnf 配置文件。Figure out why MySQL can't find its tables. Go to the MySQL data directory and look for the mysql subdirectory (corresponding to the
mysql
database which contains things like users, procs, privileges, etc.). Perhaps someone deleted themysql
database. Perhaps someone overwrote your my.cnf configuration file with one pointing to the wrong data directory.