首页 > 数据库

Couldn't find MySQL manager (/usr/bin/mysqlmanager) or server (/usr/bin/mysqld_safe)

2015-08-28 09:22:16 分类: 数据库

在ubuntu下以二进制方式安装mysql时,一切顺利,最后启动时遇到:

Couldn't find MySQL manager (/usr/bin/mysqlmanager) or server (/usr/bin/mysqld_safe)

经查,原来是配置文件问题。我复了一个my.cnf到/etc下,而其默认寻找的是/etc/mysql/my.cnf。

于是,执行

mv /etc/my.cnf /etc/mysql/

问题获得解决。


附二进制安装过程

shell> groupadd mysql
shell> useradd -r -g mysql mysql
shell> cd /usr/local
shell> tar zxvf /path/to/mysql-VERSION-OS.tar.gz
shell> ln -s full-path-to-mysql-VERSION-OS mysql
shell> cd mysql
shell> chown -R mysql .
shell> chgrp -R mysql .
shell> scripts/mysql_install_db --user=mysql
shell> chown -R root .
shell> chown -R mysql data
# 下列命令是可选的,上面的问题就是由于我执行了此操作
shell> cp support-files/my-medium.cnf /etc/my.cnf
shell> bin/mysqld_safe --user=mysql &
# 下列命令是可选的
shell> cp support-files/mysql.server /etc/init.d/mysql.server

启动mysql:

/etc/init.d/mysql.server start


参考手册

W3c0.com 提供的内容仅用于培训。我们不保证内容的正确性。通过使用本站内容随之而来的风险与本站无关。W3c0 简体中文版的所有内容仅供测试,对任何法律问题及风险不承担任何责任。 当使用本站时,代表您已接受了本站的使用条款和隐私条款。版权所有,保留一切权利。 鲁ICP备15022115号