centos8使用Apache httpd2.4.37安裝web伺服器
阿新 • • 發佈:2020-08-11
第一步:yum install httpd -y #安裝httpd服務
第二步:systemctl start httpd #啟動httpd服務
第三步:systemctl enable httpd #設定httpd服務為開機啟動
第四步:firewall-cmd --zone=public --add-port=80/tcp --permanent #開啟防火牆的80埠,並永久生效,返回success 設定成功的意思。(-permanent為永久生效,不加此引數重啟後失效)
第五步:systemctl restart firewalld.service #重啟防火牆使剛才的設定生效
第六步:firewall-cmd --zone=public --query-port=80/tcp #檢視80埠是否開啟,返回yes開啟成功,返回no未開啟(設定完成不重啟防火牆會返回no)
第七步:把網站的原始檔拷貝到/var/www/html目錄中 #或者把/var/www/html目錄刪除,然後把原始檔目錄拷貝到/var/www目錄中改名html目錄,html目錄中要有index.html預設首頁檔案。
第八步:瀏覽器輸入本機IP地址測試 #域名的需要先申請域名,然後做域名解析,繫結公網IP後使