ubuntu で Apache を再起動するにはどうすればよいですか?
Linux での Apache サービスの再起動は、Windows とは大きく異なります。よく使用されるコマンドを紹介します。
Linux システムは Ubuntu
1. 開始Apache 2 サーバー / apache サービスの開始
/etc/init.d/apache2 start or $ sudo /etc/init.d/apache2 start
2. Apache 2 サーバーの再起動 / apache サービスの再起動
/etc/init.d/apache2 restart or $ sudo /etc/init.d/apache2 restart
3. Apache 2 サーバーの停止 / apache サービスの停止
/etc/init.d/apache2 stop or $ sudo /etc/init.d/apache2 stop
詳細Apache 関連の知識については、Apache 使用法チュートリアル 列をご覧ください。
以上がUbuntuでApacheを再起動する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。