之前在Linux centos 7 上安装了apache 和mysql,当时并没有设置开机自动启动。
最近又重新练习网页,每次开机总是要手动启动httpd和mysqld,不方便,就想设置成开机自动启动apache和mysql。
Linux centos 7 怎样设置开机自动启动httpd和mysqld服务呢?
我在网上找到了下面两条命令:
systemctl enable httpd.service
systemctl enable mysqld.service
如果要取消开机自动启动apache和mysql,则用下面的命令
systemctl disable httpd.service
systemctl disable mysqld.service
可是,我想起了以前我看过开机自动运行httpd服务好像不是上面的命令,而是
chkconfig –level 3 httpd on
那么chkconfig 和systemctl 这两个命令又有什么区别与联系呢?
我在网上找到了下面这个关于systemctl 和chkconfig 指令用法比较的表格
任务 | 旧指令 | 新指令 |
使某服务自动启动 | chkconfig –level 3 httpd on | systemctl enable httpd.service |
使某服务不自动启动 | chkconfig –level 3 httpd off | systemctl disable httpd.service |
检查服务状态 | service httpd status | systemctl status httpd.service |
显示所有已启动的服务 | chkconfig –list | systemctl list-units –type=service |
启动某服务 | service httpd start | systemctl start httpd.service |
停止某服务 | service httpd stop | systemctl stop httpd.service |
重启某服务 | service httpd restart | systemctl restart httpd.service |
systemctl 是系统服务管理器命令,它实际上将 service 和 chkconfig 这两个命令组合到一起
2、有两种方法可以解决:
a.在系统启动过程中,会根据运行级别执行/etc/rcx.d/*(其中x为运行级别)。这里的文件实际上软链接到/etc/init.d/下的脚本文件,
那么,怎么创建这些软链接呢?可以使用systemctl或chkconfig指令(它们的关系参考RHEL 7 中 systemctl 的用法(替代service 和 chkconfig))。
为了防止其他不必要的麻烦,决定使用chkconfig,用chkconfig设置开机启动后重启机子,发现tomcat未启动。orz。后来尝试把文件名tomcat改成test,执行chkconfig --add test后重启机子,发现tomcat启动了。Orz。再后来执行chkconfig指令时发现这么一段话。
恩,看了下systemctl list-unit-files的执行结果,"tomcat.service disabled"。估计chkconfig的设置被systemctl的覆盖了。所以现在的情况是,用systemctl设置的因为配置错误不能成功启动tomcat,而不用systemctl的设置的话,chkconfig的设置又会被systemctl覆盖。MDZZ。
如果你照着我的配置走到这里,想骂娘?别急,除了把文件名tomcat改掉之外,我们可以剑走偏峰。请看方法b。
b.借用/etc/rc.d/rc.local实现开机启动:
在Linux系统启动过程中,在执行完对应运行级别的脚本文件(/etc/rcx.d/*)后,还会执行/etc/rc.local(前提是该文件权限是可执行的)。
所以我直接在/etc/rc.local最后加上
同时,为了在系统重启/关闭时停止tomcat,执行下面两条指令: