#SERVER
·
Express5800/110Ga-Cのセットアップ
先日届いたExpress5800/110Ga-CにWebサーバーとして必要なソフトウェア(いわゆるLAMP)をインストールするメモその1。
まずディストリビュージョンはDebian GNU/Linuxを選択。一度CentOSを使ってみたかったのだが、今回は使い慣れているDebianで。
次にApacheのインストール。SSLを使いたいのでopensslを先に入れておく。
apt-get install openssl
次に適当なサーバからソースをwget。
wget http://Ringサーバー等/httpd-2.0.59.tar.gz
展開してコンパイルとインストール(Apache + mod_ssl - PC関係のメモ (2004-12-25))
tar xvfz httpd-2.0.59.tar.gz
cd httpd-2.0.59
./configure \
--enable-so \
--enable-dav_fs \
--enable-dav \
--enable-rewrite \
--enable-ssl
make
make install
自動起動も設定(サーバーダウン - PC関係のメモ (2004-10-26))
ln -s /usr/local/apache2/bin/apachectl /etc/init.d/apache
update-rc.d apache defaults
SSL関係の設定は面倒なので後で。