• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    mysql5.7单实例自启动服务配置过程

    1.mysql版本

    [root@clq system]# mysql -v
    Welcome to the MySQL monitor.  Commands end with ; or \g.
    Your MySQL connection id is 49
    Server version: 5.7.33 MySQL Community Server (GPL)
    

    2.配置mysqld.service文件

    [Unit]
    Description=mysql server daemon
    After=network.target mysql-keygen.target
    [Service]
    Type=forking
    ExecStart=/usr/local/mysql/support-files/mysql.server start
    ExecStop=/usr/local/mysql/support-files/mysql.server   stop
    ExecReload=/bin/kill -HUP $MAINPID
    [Install]
    WantedBy=multi-user.target
    [Install]
    WantedBy=multi-user.target
    

    3.mysqld.service文件放置的地方

    /usr/lib/systemd/system/mysqld.service
    

    4.自启动

     systemctl daemon-reload 
    systemctl enable --now mysqld
    [root@mysql ~]# ss -antl
    State         Recv-Q        Send-Q               Local Address:Port               Peer Address:Port        Process        
    LISTEN        0             128                        0.0.0.0:111                     0.0.0.0:*                          
    LISTEN        0             32                   192.168.122.1:53                      0.0.0.0:*                          
    LISTEN        0             128                        0.0.0.0:22                      0.0.0.0:*                          
    LISTEN        0             5                        127.0.0.1:631                     0.0.0.0:*                          
    LISTEN        0             128                           [::]:111                        [::]:*                          
    LISTEN        0             128                           [::]:22                         [::]:*                          
    LISTEN        0             5                            [::1]:631                        [::]:*                          
    LISTEN        0             80                               *:3306                          *:*  
    

    以上就是mysql5.7单实例自启动服务配置过程的详细内容,更多关于mysql5.7单实例自启动服务配置的资料请关注脚本之家其它相关文章!

    您可能感兴趣的文章:
    • MySQL 的启动选项和系统变量实例详解
    • MySQL多实例配置方案
    • MySQL数据库入门之多实例配置方法详解
    • mysql 8.0 安装配置方法教程
    上一篇:MySQL数据库主从复制原理及作用分析
    下一篇:MySQL多实例安装开机自启动服务配置过程
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    mysql5.7单实例自启动服务配置过程 mysql5.7,单实例,单,实例,