RHEL 8 搭建 Apache Web 服務
RHEL 8 搭建 Apache Web 服務,搭建前請把 yum 源配好。 |
環境
Red Hat Enterprise
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=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 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<UP,LOOPBACK,RUNNING> 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<UP,BROADCAST,MULTICAST> 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
原文地址:
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31559985/viewspace-2676995/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- RHEL 8 搭建 Nginx Web 服務NginxWeb
- RHEL7原始碼安裝Apache服務原始碼Apache
- RHEL8.10上搭建dhcp-relay服務
- 搭建 Restful Web 服務RESTWeb
- 使用unbound在RHEL7上搭建DNS服務DNS
- LINUX(紅帽8)搭建https服務LinuxHTTP
- 使用nodejs和express搭建http web服務NodeJSExpressHTTPWeb
- apache對應的web服務預設根路徑ApacheWeb
- [Rust]使用Rocket框架搭建簡單Web服務Rust框架Web
- 網路拓撲—WEB-IIS服務搭建Web
- centos7 搭建 nginx web服務 反代理CentOSNginxWeb
- RHEL9.4上使用apache搭建http伺服器提供repo源ApacheHTTP伺服器
- linux真機搭建web服務共享光碟所有內容LinuxWeb
- Linux web服務LinuxWeb
- ImageSharp.Web實戰:輕鬆搭建高效圖片服務Web
- 用Apache服務部署網站Apache網站
- WebSocket服務搭建Web
- FTP服務搭建FTP
- 搭建Telnet服務
- NFS服務搭建NFS
- SFTP服務搭建FTP
- 如何在 CentOS、RHEL 和 Fedora 上安裝 DHCP 服務CentOS
- 在k8s裡面部署自己的go web服務K8SGoWeb
- linux系統 Apache服務配置教程。LinuxApache
- OrbStack搭建Mysql服務ORBMySql
- elastic search服務搭建AST
- linux ftp服務搭建LinuxFTP
- docker搭建vsftpd服務DockerFTP
- 搭建本地 mock 服務Mock
- mac搭建openresty服務MacREST
- RHEL8網路配置
- Nginx服務系列——靜態資源web服務NginxWeb
- 快速搭建一個go語言web後端服務腳手架GoWeb後端
- Python3一行程式碼搭建極簡web服務Python行程Web
- python如何建立web服務PythonWeb
- Web網站服務(二)Web網站
- Debian上啟用Apache2服務Apache
- K8s 上輕鬆搭建百萬連線的 MQTT 服務K8SMQQT