linux版本是否ubuntu10.10

1. 使用命令mkdir src建立src目录,使用ftp将apache传到src目录下。

2. cd /usr/local/src进入src目录,tar -zxvf httpd-2.2.21.tar.gz命令解压apache。

3. cd httpd-2.2.21进入目录,执行 ./configure --prefix=/usr/local/httpd --enable-so --enable-rewrite --enable-expires --enable-cache --enable-mem-cache 命令指定要安装的模块到/usr/local/httpd目录下。

4. make命令编译apache,这个要费几分钟时间。

5. make instal命令安装apache(可能会报无权限的错误,可以用sudo su切换到root用户)。

6. /usr/local/httpd/bin/apachectl -k start 命令启动apache,用浏览器访问http://localhost能看到"it works"则表示成功。

7. /usr/local/httpd/bin/apachectl stop关闭apache。