当前位置: 代码迷 >> MySQL >> MySQL之——service mysql start出错,mysql启动不了,解决mysql: unrecognized service异常(插曲)
  详细解决方案

MySQL之——service mysql start出错,mysql启动不了,解决mysql: unrecognized service异常(插曲)

热度:84   发布时间:2016-05-05 17:03:58.0
MySQL之——service mysql start出错,mysql启动不了,解决mysql: unrecognized service错误(插曲)
转载请注明出处:http://blog.csdn.net/l1028386804/article/details/46048485

service mysql start出错,mysql启动不了,解决mysql: unrecognized service错误的方法如下:

[[email protected] ~]# service mysql start
mysql: unrecognized service
[[email protected] ~]# service mysql restart
mysql: unrecognized service

[[email protected] ~]# rpm -q mysql 查询发现mysql已经正常安装
mysql-5.1.52-jason.1

[[email protected] ~]# /etc/rc.d/init.d/mysqld start 直接启动没问题
Starting mysqld: [ OK ]


[[email protected] ~]# ls /etc/rc.d/init.d/mysqld -l
-rwxr-xr-x 1 root root 5509 Dec 18 02:31 /etc/rc.d/init.d/mysqld

[[email protected] ~]# chkconfig mysqld on 设置mysql开机启动

[[email protected] ~]# chmod 755 /etc/rc.d/init.d/mysqld 修改mysqld执行权限

[[email protected] ~]# service mysqld start 搞定
Starting mysqld: [ OK ]
[[email protected] ~]# service mysqld start
Starting mysqld: [ OK ]
[[email protected] ~]# service mysqld status
mysqld (pid 9487) is running...

  相关解决方案