[MacPorts] Apache2: MacPortsからインストール利用

MacPorts

MacPortsからインストールしたApacheを利用する手順。

MacPorts を最新版へ&ソフトウェア一覧を更新します。

$ sudo port -d selfupdate
$ sudo port -d sync

インストール。

$ sudo port install apache2

設定ファイル(httpd.conf)をサンプルファイルからコピーします。

$ cd /opt/local/apache2/conf
$ sudo cp httpd.conf.sample httpd.conf

Apacheを起動。確認。

$ sudo /opt/local/apache2/bin/apachectl start
$ ps -axw | grep httpd

http://localhost/ もしくは http://127.0.0.1/ でアクセスできればOK。

Apacheを停止。

$ sudo /opt/local/apache2/bin/apachectl stop

下記にて、OS起動時に起動するように設定できるとのこと。

$ launchctl load -w /Library/LaunchDaemons/org.macports.apache2.plist