zoukankan      html  css  js  c++  java
  • service mysql启动失败unit not found

    想利用 service mysql start 启动mysql数据库,但是发现出现错误:

    Failed to start mysql.service: Unit not found.
    
    1、查询/etc/init.d/下是否存在mysql
    ll /etc/init.d/ | grep mysql
    

    发现该目录下并没有mysql的文件,若存在,请备份一下

    2、查询mysql.server
    find / -name mysql.server
    

    mysql.server一般在你安装的mysql目录下,自己是编译安装,所以知道目录在哪里,不知道的这样看一下

    3、执行复制操作,/usr/local/mysql/是我自己的mysql安装目录,大家根据查询出来的结果复制
    cp /usr/local/mysql/support-files/mysql.server /etc/init.d/mysql
    

    然后 service mysql start 启动成功!

  • 相关阅读:
    python_07
    python_01
    python_06
    JDBC批处理
    JDBC处理大数据
    利用PreparedStatement预防SQL注入
    利用工厂模式实现serviec层和dao层解耦
    jdbc入门
    EL表达式详解
    购物车案列
  • 原文地址:https://www.cnblogs.com/zhuyeshen/p/13212179.html
Copyright © 2011-2022 走看看