在CentOS7中用的全新服務啓動管理器 systemctlhtml
在CentOS6作服務的啓停用servicemysql
systemctl 代替service+chkconfigsql
服務啓動相關的文件: /etc/rc.d/init.d/ /etc/init.dcentos
在CentOS6中只須要把啓動的服務文件放到/etc/ini.d目錄下就能夠了,可是在CentOS7中怎麼處理了?工具
查看服務列表狀態:
systemctl list-units --type=service命令行
systemctl list-unit-fileshtm
開啓自啓動服務: systemctl enable mysqldblog
開啓禁止啓動服務: systemctl disable mysqldget
查看開機啓動: systemctl is-enabled mysqldit
啓用服務就是在當前「runlevel」的配置文件目錄 /etc/systemd/system/multi-user.target.wants 裏,創建 /usr/lib/systemd/system 裏面對應服務配置文件的軟連接;
禁用服務就是刪除此軟連接,添加服務就是添加軟鏈接。
/etc/systemd/system/multi-user.target.wants
/usr/lib/systemd/system
http://www.javashuo.com/article/p-ygbkdxbq-gt.html
修改文件 /etc/inittab id:3:initdefault:
systemctl stop firewalld # 臨時關閉防火牆
systemctl disable firewalld # 禁止開機啓動