[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。
ただいまコメントを受けつけておりません。
サービスの一覧を表示 # systemctl list-unit-files -t service 起動 # systemctl start sshd.service 停止 # systemctl stop sshd.service 状態確認 # systemctl is-active sshd.service 詳細な状態確認 # systemctl status sshd.service 自動起動の設定をONに変更 # systemctl enable sshd.service 自動起動の設定をOFFに変更 # systemctl disable sshd.service
起動 # service sshd start または # /etc/rc.d/init.d/sshd start 停止 # service sshd stop または # /etc/rc.d/init.d/sshd stop 状態確認 # service sshd status または # /etc/rc.d/init.d/sshd status 自動起動ON # chkconfig sshd on 自動起動OFF # chkconfig sshd off