zoukankan      html  css  js  c++  java
  • 【mysql】service mysql start出错,mysql启动不了,解决mysql: unrecognized service错误

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

    [root@ctohome.com ~]# service mysql start
    mysql: unrecognized service
    [root@ctohome.com ~]# service mysql restart
    mysql: unrecognized service
     
    [root@ctohome.com ~]# rpm -q mysql   查询发现mysql已经正常安装
    mysql-5.1.52-jason.1

    [root@ctohome.com ~]# /etc/rc.d/init.d/mysqld start  直接启动没问题
    Starting mysqld:  [  OK  ]

     
    [root@ctohome.com ~]# 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

    [root@ctohome.com ~]# chkconfig mysqld on 设置mysql开机启动

    [root@ctohome.com ~]# chmod 755 /etc/rc.d/init.d/mysqld  修改mysqld执行权限

    [root@ctohome.com ~]# service mysqld start  搞定
    Starting mysqld:  [  OK  ]
    [root@ctohome.com ~]# service mysqld start
    Starting mysqld:  [  OK  ]
    [root@ctohome.com ~]# service mysqld status
    mysqld (pid 9487) is running...

  • 相关阅读:
    css 布局方式
    初识cv
    CSS 样式表{二}
    获取设备通讯录信息
    iOS Block界面反向传值小demo
    在iOS中如何正确的实现行间距与行高
    iOS开发- 获取本地视频文件
    view围绕圆心自转
    监测网络状态
    简单的九宫格算法与使用
  • 原文地址:https://www.cnblogs.com/chinaifae/p/10342234.html
Copyright © 2011-2022 走看看