タイトル: 起動・停止(Linux)
Apacheの起動・停止コマンド(Linux)です。
起動
Redhat系
/etc/init.d/httpd start |
Ubuntu
service apache2 start |
停止
Redhat系
/etc/init.d/httpd stop |
Ubuntu
service apache2 stop |
再起動
Ubuntu
service apache2 restart |
ステータス確認
Ubuntu
service apache2 status |