您好,登錄后才能下訂單哦!
虛擬機:192.168.2.21
【停止防火墻】
sudo systemctl stop firewalld.service --停止防火墻
sudo systemctl disable firewalld.service --開機關閉防火墻
【安裝apache httpd服務】
cat /etc/yum.repos.d/CentOS-Media.repo -----查看鏡像配置
yum --disablerepo=\* --enablerepo=c7-media,offline-extras,offline-storage-gluster38 list | grep httpd --查看本地鏡像是否有 apache httpd 的rpm安裝包
sudo yum --disablerepo=\* --enablerepo=c7-media,offline-extras,offline-storage-gluster38 install httpd --安裝httpd服務
sudo systemctl list-unit-files httpd.service --查看httpd服務
sudo systemctl enable httpd.service && sudo systemctl start httpd.service --啟動httpd服務
sudo systemctl -l status httpd.service --查看httpd服務
sudo netstat -tpnl --查看httpd服務占用端口
curl http://localost --測試httpd是否安裝成功
curl http://127.0.0.1 --測試httpd是否安裝成功
curl http://192.168.2.21 --測試httpd是否安裝成功
sudo systemctl -l status firewalld.service --查看防火墻狀態
sudo systemctl stop firewalld.service --停止防火墻
sudo systemctl disable firewalld.service --開機關閉防火墻
ls /var/www/html --這是封裝的http訪問的入口
sudo ln -s /home/ecp2/mirror/ /var/www/html/ --在/var/www/html下創建/home/ecp2/mirror 目錄的 快捷方式 但由于權限的問題 這種操作訪問不了
sudo chown -R apache: mirror/ --將文件mirror文件的讀權限給apache用戶 (這樣依然沒有權限訪問)
sudo cp -r /home/ecp2/mirror . --把/home/ecp2/mirror鏡像目錄復制到.當前目錄 即/var/www/html (這樣在瀏覽器http://192.168.2.21/mirror 就可以訪問了)
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。