☆☆ 新着記事 ☆☆

2018年12月24日月曜日

Apache(httpd)のコマンド一覧


◇コマンド一覧
main.host がport 80をListenしている場合、以下のコマンド実行にはroot権限が必要。

1) 起動する。
systemctl start httpd

2) 起動の状態を確認する。
$ systemctl status httpd

3) システムのリロード
# systemctl reload httpd
又は
# systemctl restart httpd

4) 停止する
♯ systemctl stop httpd

5) httpd自動起動の設定
$ systemctl enable httpd

5) httpd自動起動の設定確認
$ systemctl list-unit-files | grep httpd
httpd.service   enabled

 Note) Apacheの起動、停止、再起動に
     ./etc/init.d/httpd  (オプション)
    (オプション)は start 又は stop 又は restart。


    この書き方でをガイドしているものがありますが、   これは「sysv方式」と呼ばれる

    記述方式で、コマンド実行の効果は同じです。systemctlの方が正式と言われています。

0 件のコメント:

コメントを投稿