赞
踩
问题
根据公司信息化建设要求,需构建一台独立配置的网站服务器。考虑到站点的运行效率及稳定性、可扩展性等因素,要求使用RHEL 6服务器系统。为了尽快掌握httpd服务的相关配置,管理员先安装RPM格式的httpd包进行测试:
步骤一:构建httpd服务器
1)使用yum安装httpd、httpd-manual软件包
[root@svr5 ~]# yum -y install httpd httpd-manual
… …
[root@svr5 ~]# rpm -q httpd
httpd-2.2.15-29.el6_4.x86_64
2)启用httpd服务,并设为开机自动运行
[root@svr5 ~]# service httpd restart ; chkconfig httpd on
停止 httpd: [失败]
正在启动 httpd:httpd: apr_sockaddr_info_get() failed for svr5
httpd: Could not reliably determine the server’s fully qualified domain name, using 127.0.0.1 for ServerName
注意:在启动httpd过程中可能会出现上述异常信息,原因是还没有为这个Web站点配置域名,但并不影响Web服务的监听,所以这里暂时可以先忽略。
httpd服务默认监听TCP协议的80端口,可通过netstat检查确认:
[root@svr5 ~]# netstat -anptu |grep httpd
tcp 0 0 :::80 ::
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。