systemd(LPIC)


systemd

サンプル

nginxサービスを起動する

$ systemctl start nginx.service

nginxサービスを停止する

$ systemctl stop nginx.service

nginxサービスを再起動する

$ systemctl restart nginx.service

nginxサービスのステータスを表示

$ systemctl status nginx.service

nginxサービスが起動しているか表示

$ systemctl is-active nginx.service

nginxサービスを自動起動の設定をする

$ systemctl enable nginx.service

nginxサービスを自動起動の設定を解除する

$ systemctl disable nginx.service

ランレベル

Red Hat Enterprise Liux, CentOS. Fedoraでのランレベル

Ubuntu, Debian GNU/Linux でのランレベル

その他