标签:浏览器 disabled str set 永久 httpd 编写 mct 火墙
工具:RHEL7.5、Ubuntu kylin18.04
Apache服务器:RHEL7.5
IP:192.168.1.176
测试机:Ubuntu kylin18.04
IP:192.168.1.179
-------------------------------------------------------------------------------------------------------------------------
********************************************************************************************************
1.关闭SElinux和防火墙
setenforce 0 #临时关闭SELINUX
systemctl stop firewalld #关闭防火墙
#永久关闭SElinux
vim /etc/sysconfig/selinux
#修改其中语句
SELINUX=enforcing ---> SELINUX=disabled
2.创建Web的根目录
mkdir /web
3.编写配置文件 /etc/httpd/conf/httpd.conf
DocumentRoot "/var/www/html"---------->DocumentRoot"/web"
#配置文档根目录
<Directory “/var/www/html"> ------------><Directory "/web">
#配置默认文档
<IfModule dir_module>
DirectoryIndex index.html
<IfModule>
|
|
<IfModule dir_module>
DirectoryIndex index.htm
<IfModule>
#配置默认文档
4.编写index.htm
vim /web/index.htm
Hello World
5.开启httpd服务
systemctl start httpd
6.测试
在测试机浏览器中输入http://192.168.1.176
在服务器浏览器中输入http://127.0.0.1
标签:浏览器 disabled str set 永久 httpd 编写 mct 火墙
原文地址:https://www.cnblogs.com/handsky/p/linux_server_00002.html