2014-10-07

systemctl と chkconfig

EL7になって, サービス関連の操作が systemd になり, これまでとコマンドが変わってしまった. (互換性のため, service, chkconfig をつかってもフォワードしてくれる)
EL6までEL7
サービスの開始 service name start systemctl start name
サービスの停止 service name stop systemctl stop name
サービスを起動時に開始する chkconfig name on systemctl enable name
サービスを起動時に開始しない chkconfig name off systemctl disable name
サービス一覧 chkconfig --list systemctl list-unit-files
サービスの状態の表示 service name status
chkconfig --list name
systemctl status name

0 件のコメント:

コメントを投稿