RHEL 8如何搭建 Apache Web 服务,针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。
成都创新互联是一家集网站建设,三山企业网站建设,三山品牌网站建设,网站定制,三山网站建设报价,网络营销,网络优化,三山网站推广为一体的创新建站企业,帮助传统企业提升企业形象加强企业竞争力。可充分满足这一群体相比中小企业更为丰富、高端、多元的互联网需求。同时我们时刻保持专业、时尚、前沿,时刻以成就客户成长自我,坚持不断学习、思考、沉淀、净化自己,让我们为更多的企业打造出实用型网站。RHEL 8 搭建 Apache Web 服务,搭建前请把 yum 源配好。 |
环境
Red Hat Enterprise
Linux release 8.0
VMware Workstation Pro 14
搭建步骤
[root@localhost ~]# yum install -y httpd [root@localhost ~]# systemctl start httpd [root@localhost ~]# iptables -F [root@localhost ~]# systemctl stop firewalld [root@localhost ~]# systemctl disable firewalld Removed /etc/systemd/system/multi-user.target.wants/firewalld.service. Removed /etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service. [root@localhost ~]# setenforce 0 [root@localhost ~]# ifconfig ens33: flags=4163mtu 1500 inet 192.168.10.118 netmask 255.255.255.0 broadcast 192.168.10.255 inet6 fe80::e09a:769b:83f0:8efa prefixlen 64 scopeid 0x20 ether 00:50:56:34:0d:74 txqueuelen 1000 (Ethernet) RX packets 1959 bytes 1690200 (1.6 MiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 1245 bytes 120922 (118.0 KiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 lo: flags=73 mtu 65536 inet 127.0.0.1 netmask 255.0.0.0 inet6 ::1 prefixlen 128 scopeid 0x10 loop txqueuelen 1000 (Local Loopback) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 virbr0: flags=4099 mtu 1500 inet 192.168.122.1 netmask 255.255.255.0 broadcast 192.168.122.255 ether 52:54:00:9c:ef:c6 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
在浏览器输入 192.168.10.118 查看 Apache Web 服务状态
自定义首页内容
[root@localhost ~]# echo "HELLO RHEL8" > /var/www/html/index.html [root@localhost ~]# systemctl restart httpd
设置文件共享服务
[root@localhost ~]# rm -rf /etc/httpd/conf.d/welcome.conf [root@localhost ~]# rm -rf /var/www/html/index.html [root@localhost ~]# touch /var/www/html/file{1..10} [root@localhost ~]# systemctl restart httpd
设置端口映射
查看宿主机IP
在浏览器输入 192.168.0.7:118 测试文件共享服务状态
解决中文乱码
[root@localhost ~]# touch /var/www/html/你好红帽8.txt [root@localhost ~]# systemctl restart httpd
解决方法
在 /etc/httpd/conf/httpd.conf 配置文件中加入 IndexOptions Charset=UTF-8
[root@localhost ~]# vim /etc/httpd/conf/httpd.conf 316 AddDefaultCharset UTF-8 317 IndexOptions Charset=UTF-8 [root@localhost ~]# systemctl restart httpd
关于RHEL 8如何搭建 Apache Web 服务问题的解答就分享到这里了,希望以上内容可以对大家有一定的帮助,如果你还有很多疑惑没有解开,可以关注创新互联-成都网站建设公司行业资讯频道了解更多相关知识。