CentOS 6.xでは、service
やchkconfig
コマンドで行っていたサービスの設定を、
CentOS 7.xではsystemctl
コマンドで実行する。
systemctl list-units [検索パターン]
systemctl list-unit-files [検索パターン]
systemctl status httpd.service
systemctl enable httpd.service systemctl disable httpd.service
systemctl start httpd.service systemctl stop httpd.service systemctl restart httpd.service
サイト固有のユニットファイルを作成した場合は/etc/systemd/system
に置く。
置いた後はsystemctl daemon-reload
を実行してユニットファイルを再読み込みする。