* Apache 설치
·
Linux
1) [root@localhost /]# cd /usr/local/src 2) [root@localhost /]# wget http://www.apache.org/dist/httpd/httpd-2.0.55.tar.gz 3) [root@localhost /]# tar xvfz httpd-2.0.54.tar.gz 4) [root@localhost /]# cd httpd-2.0.54 5) [root@localhost /]# ./configure --prefix=/usr/local/apache2 \ --enable-rule=SHARED_CORE \ --enable-modules=so \ --enable-so 6) [root@localhost /]# make 7) [root@localhost /]# make in..