首页 > 代码库 > mysqld_safe启动报错 mysqld_safe The file /usr/local/mysql/bin/mysqld does not exist or is not executable
mysqld_safe启动报错 mysqld_safe The file /usr/local/mysql/bin/mysqld does not exist or is not executable
报错(如下),但是使用mysqld直接启动没有问题。
[sql] view plain copy
- 150718 00:03:38 mysqld_safe Logging to ‘/var/log/mysqld.log‘.
- 150718 00:03:38 mysqld_safe The file /usr/local/mysql/bin/mysqld
- does not exist or is not executable. Please cd to the mysql installation
- directory and restart this script from there as follows:
- ./bin/mysqld_safe&
- See http://dev.mysql.com/doc/mysql/en/mysqld-safe.html for more information
- [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创建链接文件
[sql] view plain copy
- mkdir -p /usr/local/mysql/bin
- ln -s /home/mysql/product/5.6/mysql-1/bin/mysqld /usr/local/mysql/bin/mysqld
方法二:将mysqld_safe中的所有/usr/local/mysql目录改为自己实际的安装目录
[sql] view plain copy
- <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
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。