MySQL在Ubuntu系统的三种自启动方法

                       

MySQL在Ubuntu系统的三种自启动方法

作者:chszs,转载需注明。博客主页:http://blog.csdn.net/chszs

1、、软件环境:

  1. Ubuntu 14.04.1 LTS (GNU/Linux 3.13.0-32-generic x86_64)
  2. MySQL 5.6.27 x64

2、方法一

最简单的方法是执行命令:

# update-rc.d mysql defaults Adding system startup for /etc/init.d/mysql ...   /etc/rc0.d/K20mysql -> ../init.d/mysql   /etc/rc1.d/K20mysql -> ../init.d/mysql   /etc/rc6.d/K20mysql -> ../init.d/mysql   /etc/rc2.d/S20mysql -> ../init.d/mysql   /etc/rc3.d/S20mysql -> ../init.d/mysql   /etc/rc4.d/S20mysql -> ../init.d/mysql   /etc/rc5.d/S20mysql -> ../init.d/mysql
    
    
    
    
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

注意:移除MySQL的开机服务可执行命令update-rc.d mysql remove

3、方法二

第二种方法是使用sysv-rc-conf工具,执行命令:

# apt-get install sysv-rc-conf# sysv-rc-conf
    
    
    
    
  • 1
  • 2

打开了命令行方式的自启动服务管理界面:
这里写图片描述

用鼠标点击,也可以用键盘方向键定位,用空格键选择, “X”表示开启该服务。用Ctrl+N翻下一页,用Ctrl+P翻上一页,用Q退出。

也可以用命令:

# sysv-rc-conf --level 2345 mysql off
    
    
    
    
  • 1

注意:Ubuntu系统中服务的运行级别

0        系统停机状态1        单用户或系统维护状态2~5      多用户状态6        重新启动
    
    
    
    
  • 1
  • 2
  • 3
  • 4

4、方法三

第三种方法是使用chkconfig工具,执行命令:

# apt-get install chkconfig# chkconfig mysql --listmysql           0:off   1:off   2:off   3:off   4:off   5:off   6:off
    
    
    
    
  • 1
  • 2
  • 3

如果mysqld没有在列表,那么用命令添加它:

# chkconfig add mysql
    
    
    
    
  • 1

我们可以看到,mysqld本来就在列表中,所以这一步我们跳过。

使用命令设置开机启动:

# chkconfig --add mysql# chkconfig mysql --listmysql           0:off   1:off   2:on    3:on    4:on    5:on    6:off
    
    
    
    
  • 1
  • 2
  • 3

表示MySQL的开机自启动已经设置完成。

           

再分享一下我老师大神的人工智能教程吧。零基础!通俗易懂!风趣幽默!还带黄段子!希望你也加入到我们人工智能的队伍中来!https://blog.csdn.net/jiangjunshow

你可能感兴趣的:(MySQL在Ubuntu系统的三种自启动方法)