Home >Database >Mysql Tutorial >Ubuntu自启动Mysql的三种方式_MySQL

Ubuntu自启动Mysql的三种方式_MySQL

WBOY
WBOYOriginal
2016-05-30 17:10:371232browse

代码如下:


# 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

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

代码如下:


# apt-get install sysv-rc-conf
# sysv-rc-conf

打开了命令行方式的自启动服务管理界面:

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

也可以用命令:

代码如下:


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

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

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

代码如下:


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

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

代码如下:


# chkconfig add mysql

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

使用命令设置开机启动:

代码如下:


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

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

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn