紧急求助:linux 下面mysql启动不了 my_print_defaults: command not found
/etc/init.d/mysqld: line 263: my_print_defaults: command not found
/etc/init.d/mysqld: line 292: cd: /usr/local/mysql: No such file or directory
Starting MySQLCouldn't find MySQL manager (/usr/local/mysql/bin/mysqlmanager) or server (/usr/local/mysql/bin/mysqld_safe) [FAILED]
在线等
我的QQ:270169831
希望哪位好心人帮助一下,谢谢 展开
linux 下面mysql启动不了 my_print_defaults: command not found的原因是:
/etc/init.d/mysql这个MySQL的启动脚本错误,MySQL是使用源代码安装的,一般会提示tarting MySQL Couldn't find MySQL manager or server(@bindir@/mysqld_safe)。
具体解决办法:
键入如下命令:
cd <your MySQL install PATH>
cd bin
.mysqld_safe --user=mysql& #
扩展资料:
mysql的其他报错解决办法:
1、Starting MySQL.Manager of pid-file quit without updating fi[失败]
关于这个错误原因有很多,最大的可能是没有创建测试数据库,可以用/usr/local/mysql/scripts/mysql_install_db –user=mysql命令进行创建;另外一个原因可能是权限设置问题,需要赋予mysql的data权限,可以用chmod -R 命令。
2、FATAL ERROR: Could not find /home/mysql/bin/my_print_defaults If you are using a binary release,you must run this script from
within the directory the archive extracted into. If you compiled
MySQL yourself you must run ‘make install’ first.
这个错误,是没有指明mysql的data路径导致的,可以很简单的进行解决:
vim /etc/my.cnf
在[mysqld] 后面加上路径:
basedir = /usr/local/mysql
datadir =/opt/data;
3、-bash: mysql: command not found
用mysql命令进行登陆mysql报错,原因是没有设置环境变量,需要设置,或者进入到bin目录进行登陆cd /usr/local/mysql/bin
mysql -u root
参考资料来源:百度百科-mySQL
2、解决第4个报错:
配置文件重复的问题....
打开/etc目录。看是否有my.cnf文件...
打开/etc/mysql目录。看是否下面还有一个my.cnf文件....
输入命令:mv /etc/mysql/my.cnf /etc/mysql/my.cnf.old
把/etc/mysql/my.cnf重命名成my.cnf.old
然后:/etc/init.d/mysql start
想必,你的MySQL是使用源代码安装的。
因为,错误提示:Starting MySQL Couldn't find MySQL manager or server(@bindir@/mysqld_safe)
这样,你启动的时候,使用如下命令:
cd <your MySQL install PATH>
cd bin
.mysqld_safe --user=mysql& #注意前面有个点
当前系统运行级别下 服务有没有开启 chkconfig --list | grep mysqld
chkconfig mysqld on
service mysqld restart