サービス自動起動の設定

サービス自動起動の設定

`SysVinit`か`Systemd`か`Linuxの起動の仕組み`によって手順が変わる。
CentOS6系はSysVinit
CentOS7系はSystemd
で、Systemdの方が並列実行できたり、色々と優秀。
 

# SysVinit Cent6系 ...
/etc/init.d/httpd status
/etc/init.d/httpd start
/etc/init.d/httpd stop
chkconfig httpd on
chkconfig httpd off
chkconfig | grep httpd

# Systemd Cent7系, Ubuntu16.04 ...
systemctl status apache2
systemctl start apache2
systemctl stop apache2
systemctl enable apache2
systemctl disable apache2
systemctl is-enabled apache2.service

コメント

タイトルとURLをコピーしました