标签:退出 style tracking 保存 bsp art figure stop lin
一.获取软件: http://httpd.apache.org/ httpd-2.4.10.tar.gz
二.安装步骤:
解压源文件:
1) tar zvxf httpd-2.4.10.tar.gz
2) cd httpd-2.4.10
3) ./configure --prefix=/usr/local/apache2 --enable-so --enable-rewrite
4) make
5) make install
执行./configure 命令进行编译源码。
--prefix=/usr/local/apach2 是设置编译安装到的系统文件夹,
--enable-s 參数是使httpd服务可以动态载入模块功能,
--enable-rewrite 是使httpd服务具有网页地址重写功能。
三.启动apache:
/usr/local/apache2/bin/apachectl start
四,验证是否成功安装
浏览器中直接输入:http://localhost
在/var/www/html 中加入testp.php文件然后在浏览器中输入:http://localhost/test.php
五,将apache增加到系统服务。用service命令来控制apache的启动和停止
启动Apache服务: service apache start
停止Apache服务: service apache stop
运行以下的命令关闭开机自启动: chkconfig apache off
标签:退出 style tracking 保存 bsp art figure stop lin
原文地址:http://www.cnblogs.com/lxjshuju/p/7103342.html