码迷,mamicode.com
首页 > 数据库 > 详细

mysqld_safe启动报错 mysqld_safe The file /usr/local/mysql/bin/mysqld does not exist or is not executable

时间:2017-04-16 21:31:26      阅读:479      评论:0      收藏:0      [点我收藏+]

标签:没有   more   mysql目录   bag   rect   span   启动   exe   sed   

报错(如下),但是使用mysqld直接启动没有问题。

  1. 150718 00:03:38 mysqld_safe Logging to ‘/var/log/mysqld.log‘.  
  2. 150718 00:03:38 mysqld_safe The file /usr/local/mysql/bin/mysqld  
  3. does not exist or is not executable. Please cd to the mysql installation  
  4. directory and restart this script from there as follows:  
  5. ./bin/mysqld_safe&  
  6. See http://dev.mysql.com/doc/mysql/en/mysqld-safe.html for more information  
  7.   
  8. [1]+  Exit 1                  mysqld_safe --skip-grant-tables --user=mysql  

说明:mysqld_safe启动脚本默认的从/usr/local/mysql目录中读取另外一个启动脚本mysqld,因为我的安装目录为/home/mysql/product/5.6/mysql-1。所以找不到相关文件。可以从两个方面解决。

方法一:在/usr/local/mysql创建链接文件

  1. mkdir -p /usr/local/mysql/bin  
  2. ln -s /home/mysql/product/5.6/mysql-1/bin/mysqld /usr/local/mysql/bin/mysqld  

方法二:将mysqld_safe中的所有/usr/local/mysql目录改为自己实际的安装目录

  1. <pre name="code" class="sql">sed -i ‘s#/usr/local/mysql#/home/mysql/product/5.6/mysql-1#g‘ /home/mysql/product/5.6/mysql-1/bin/mysqld_safe  

再次启动成功。

mysqld_safe启动报错 mysqld_safe The file /usr/local/mysql/bin/mysqld does not exist or is not executable

标签:没有   more   mysql目录   bag   rect   span   启动   exe   sed   

原文地址:http://www.cnblogs.com/wajika/p/6719805.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!