网站地图    收藏   

主页 > 后端 > mysql数据库 >

启动mysql出错:Can't find messagefile '/usr/share/mysql/errmsg.sy

来源:未知    时间:2015-04-17 19:09 作者:xxadmin 阅读:

[导读] 下面我们来看看关于启动mysql出错:Cant find messagefile /usr/share/mysql/errmsg.sys出错问题的解决办法吧. 启动数据库出现错误,错误信息是: [ERROR]Can tfindmessagefile /usr/share/mysql/errmsg.sys root@debian:/...

下面我们来看看关于启动mysql出错:Can't find messagefile '/usr/share/mysql/errmsg.sys出错问题的解决办法吧.

启动数据库出现错误,错误信息是:

  1. [ERROR] Can't find messagefile '/usr/share/mysql/errmsg.sys' 
  2. root@debian:/usr/local# /etc/init.d/mysql3306 start 
  3.  
  4. Starting MySQL 
  5. ...The server quit without updating PID file (/home/www/mysql/m3306/mysql3306.pid). ... failed! 
  6. root@debian:/usr/local/mysql3306# cat /home/www/mysql/m3306/mysql3306.err 
  7. 120102 14:11:58 mysqld_safe Starting mysqld daemon with databases from /home/www/mysql/m3306 
  8. 120102 14:11:58 [ERROR] Can't find messagefile '/usr/share/mysql/errmsg.sys' 
  9. 120102 14:11:58 [Note] Plugin 'FEDERATED' is disabled. 
  10. 120102 14:11:58 InnoDB: The InnoDB memory heap is disabled 
  11. 120102 14:11:58 InnoDB: Mutexes and rw_locks use GCC atomic builtins 
  12. 120102 14:11:58 InnoDB: Compressed tables use zlib 1.2.3 
  13. 120102 14:11:58 InnoDB: Using Linux native AIO 
  14. 120102 14:11:58 InnoDB: Initializing buffer pool, size = 128.0M 
  15. 120102 14:11:58 InnoDB: Completed initialization of buffer pool 
  16. 120102 14:11:58 InnoDB: highest supported file format is Barracuda. 
  17. 120102 14:11:58  InnoDB: Waiting for the background threads to start 
  18. 120102 14:11:59 InnoDB: 1.1.8 started; log sequence number 1595675  --phpfensi.com 
  19. 120102 14:11:59 [ERROR] Aborting 
  20.  
  21. 120102 14:11:59  InnoDB: Starting shutdown... 
  22. 120102 14:12:00  InnoDB: Shutdown completed; log sequence number 1595675 
  23. 120102 14:12:00 [Note] 
  24. 120102 14:12:00 mysqld_safe mysqld from pid file /home/www/mysql/m3306/mysql3306.pid ended 

解决方法是:

root@debian:/usr/local# vi mysql3306/my.cnf

加入language配置项,由于我是使用二进制分发包进行安装的,而默认的情况下,mysql会到/usr/local/mysql/share/english下查找该文件,但由于我的mysql安装路径 为/usr/local/mysql3306/,所以如下:

  1. [mysqld] 
  2. pid-file  = /home/www/mysql/m3306/mysql3306.pid 
  3. log-error = /home/www/mysql/m3306/mysql3306.err 
  4. language  = /usr/local/mysql3306/share/english #此处为language配置项 
  5.  
  6. port  = 3306 
  7. socket   = /tmp/mysql3306.sock 
  8. basedir  = /usr/local/mysql3306 
  9. datadir  = /home/www/mysql/m3306 

重新启动:

root@debian:/usr/local# /etc/init.d/mysql3306 start

Starting MySQL

已成功启动.

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论