码迷,mamicode.com
首页 > Web开发 > 详细

apache服务

时间:2018-03-06 20:21:23      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:软件包   主机   httpd   def   http   out   gb2312   根目录   pos   

1、搭建apache服务步骤

①准备环境(关闭防火墙service iptables stop,关闭selinux-setenforce 0,配置ip地址)

②装软件包yum install httpd -y

③修改配置文件vim /etc/httpd/conf/httpd.conf

vim /etc/httpd/conf/httpd.conf    //编辑主配置文件
ServerRoot "/etc/httpd"             //设置Apache的主目录
Timeout 120                             //设置请求超时
Listen 80                                  //设置监听端口---重要
ServerAdmin root@sales.com          //设置管理员邮箱
ServerName 192.168.0.3:80           //设置主机或IP
DocumentRoot "/var/www/html"      //设置Apache文档目录---文档根目录--重要
DirectoryIndex index.html               //设置主页文件
AddDefaultCharset GB2312            //设置网站编码

④启动服务

使用service httpd stop可以停止httpd

使用service httpd start 可以启动httpd

使用service httpd restart 可以重启httpd

⑤测试

2、apache服务提供网页服务

3、cd /var/www/html目录中新增a.txt文件并填写内容

4、重启服务service httpd restart

5、访问http://IP地址:监听端口/a.txt

浏览器默认端口号80

默认访问文件index.html,即http://IP地址:监听端口/

apache服务

标签:软件包   主机   httpd   def   http   out   gb2312   根目录   pos   

原文地址:https://www.cnblogs.com/zhengmengfei/p/8515877.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!