- 事前準備
# vi /etc/thttpd.conf以降、玄箱の設定(WEBツール)は http://kuro-box:8080/ となる。
port=8080
# /etc/init.d/thttpd restart
- Apacheのインストール
http://www.meisei-u.ac.jp/mirror/apache/httpd/
今日もコンパイルする作業がはじまるお(AA略
$ tar xvfz httpd-2.0.61.tar.gz
$ cd httpd-2.0.61
$ ./configure --prefix=/opt/apache2
$ make
# make install
# strip -p /opt/apache2/bin/*
# strip -p /opt/apache2/lib/*
Apache起動と終了
# /opt/apache2/bin/apachectl start自動起動の設定
# /opt/apache2/bin/apachectl stop
この設定をすると、玄箱を起動したときに自動でApacheも起動するようになります。
# cp /opt/apache2/bin/apachectl /etc/init.d/httpd長くなりそうなので、Apacheの設定は次に。
# chmod 755 /etc/init.d/httpd
# ln -s /etc/init.d/httpd /etc/rc.d/rc2.d/S25httpd
# ln -s /etc/init.d/httpd /etc/rc.d/rc0.d/K25httpd
# ln -s /etc/init.d/httpd /etc/rc.d/rc6.d/K25httpd