赞
踩
实验:为Linux主机安装应用程序
httpd-2.4.25.tar.gz:http://apache.org/dyn/closer.cgi
1、编译安装Apache,并通过Mozilla Firefox浏览器验证Apache能否正常工作。
1)解压缩源代码程序
[root@Centos ~]# tar zxvf /mnt/httpd-2.2.17.tar.gz -C /usr/src/
2)配置apache指定安装位置为/usr/local/apache
[root@Centos ~]# cd /usr/src/httpd-2.2.17/
[root@Centos httpd-2.2.17]# ./configure --prefix=/usr/local/apache
3)编译并安装apache程序
[root@Centos httpd-2.2.17]# make && make install
4)检查apache安装目录是否创建
[root@Centos httpd-2.2.17]# ls -ld /usr/local/apache/
5)修改网站主页
[root@Centos ~]# echo “www.benet.com” > /usr/local/apache/htdocs/index.html
6)配置修改apache主配置文件监听IP地址和端口
[root@Centos ~]# vi /usr/local/apache/conf/httpd.conf
98 ServerName 10.1.1.1:80
7)启动apache服务
[root@Centos ~]# /usr/local/apache/bin/apachectl start
8)监听服务端口号
[root@Centos ~]# netstat -anptu | grep 80
9)浏览器访问网站
http://10.1.1.1
10)添加hosts文件域名解析
[root@Centos ~]# vim /etc/hosts
10.1.1.1 www.benet.com
11)域名访问
http://www.benet.com
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。