zoukankan      html  css  js  c++  java
  • [Linux]Service mysql start出错(mysql: unrecognized service)解决方法

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

    [hitony ~]# service mysql start
    mysql: unrecognized service
    [hitony ~]# service mysql restart
    mysql: unrecognized service

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

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


    [hitony ~]# 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

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

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

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

  • 相关阅读:
    前端页面的防抖与节流
    vue3.0 响应式原理
    cssBEM命名规范及常用CSS class 命名
    vue2.x 响应式原理
    npm 相关命令
    Node之 fs
    Node 之 Buffer
    Node之path
    Node之process
    Node.js 如何处理 ES6 模块
  • 原文地址:https://www.cnblogs.com/intval/p/5864675.html
Copyright © 2011-2022 走看看