インストールした Apache を起動して動作の確認を行います。
また Apache の自動起動スクリプトを作成して OS 起動時に自動的に Apache を起動するように設定します。
Apache の起動と終了
Apache は apachectl 制御スクリプトを使って起動します。
# /usr/local/httpd/bin/apachectl start
ウェブブラウザを使って http://192.168.0.2/ のようにサーバーの IP アドレスを入力しテストページが表示されることを確認します。
Apache を停止する場合も apachectl 制御スクリプトを使います。
# /usr/local/httpd/bin/apachectl stop
Apache の自動起動スクリプト
Apache の自動起動スクリプトを使うことで、サーバーマシンが起動するときに自動的に Apache を起動させることができます。
Apache の自動起動スクリプトは apachectl スクリプトを利用します。
これを /etc/init.d/apache ファイルとしてコピーします。
# install -o root -g root -m 755 /usr/local/httpd/bin/apachectl /etc/init.d/apache
コピーした自動起動スクリプトの自動起動設定を行います。
# update-rc.d apache defaults 85 15
自動起動スクリプトを使って Apache を起動する場合は以下のように実行します。
# /etc/init.d/apache start