欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  科技

rhel6.3使用yum安装apache的方法

程序员文章站 2023-11-28 10:16:34
这篇文章主要介绍了rhel6.3使用yum安装apache的方法,需要的朋友可以参考下... 14-04-29...

1、安装httpd软件包:

yum install httpd

2、启动apache服务:

[root@redhat desktop]# /etc/init.d/httpd start

starting httpd:                                            [  ok  ]

3、安装mod-ssl软件包

[root@redhat desktop]# yum install mod_ssl –y

4、创建一个/date/www/html的目录、并且修改安全上下文:

chcon –t httpd_sys_content_t /date/ -r(l临时修改都行)

5、在/date/www/html下添加一个apache可执行的文件:

6、在/var/www/html下添加一个可执行的文件

7、配置apache的配置文件:(注意打开80端口)

rhel6.3使用yum安装apache的方法

8、配置ssl的配置文件:(注意添加 加密那2行)

rhel6.3使用yum安装apache的方法

9、重启apache服务:

[root@redhat conf.d]# /etc/init.d/httpd restart

stopping httpd:                                            [  ok  ]

starting httpd:                                            [  ok  ]

[root@redhat conf.d]#

10、配置域名解析:/etc/hosts

apache.example.com      192.168.0.1

redhat.example.com       192.168.0.1

11测试是否成功:

rhel6.3使用yum安装apache的方法

rhel6.3使用yum安装apache的方法