この内容は古いバージョンです。最新バージョンを表示するには、戻るボタンを押してください。
バージョン:4
ページ更新者:T
更新日時:2018-11-22 08:37:13

タイトル: 起動・停止(Linux)
SEOタイトル: Apacheの起動・停止コマンド(Linux)

Apacheの起動・停止コマンド(Linux)です。

 

起動

Redhat系

/etc/init.d/httpd start

もしくは

service httpd start

Ubuntu

service apache2 start

 

停止

Redhat系

/etc/init.d/httpd stop

もしくは

service httpd stop

Ubuntu

service apache2 stop

 

再起動

Redhat系

service httpd restart

Ubuntu

service apache2 restart

 

ステータス確認

Redhat系

/etc/init.d/httpd status

Ubuntu

service apache2 status