rpm -ql httpd 檢視apache包中檔案的安裝位置
find /etc -name httpd 查詢apache程式的啟動執行httpd所在位置 cd /etc/rc.d/init.d 切換到init.d目錄 ls 顯示當前目錄下所有檔案,找到httpd檔案
/etc/rc.d/init.d/httpd start 啟動apache服務
service httpd start 也可以啟動apache服務
注意:service 只能啟動RPM包預設安裝路徑中的檔案,而原始碼包安裝在/usr/local/這個路徑下的,因此不能使用service命令啟動程式。
curl http://localhost/ 輸入網址檢視頁面原始碼
在windows瀏覽器中輸入http://192.168.6.3/確無法訪問這個頁面,需要設定防火牆能夠允許80埠訪問linux系統。
cd /etc/sysconfig/ 進入/etc/sysconfig/目錄中 iptables -I INPUT -p TCP --dport 80 -j ACCEPT 設定防火牆可以通過80埠訪問
開啟防火牆之後,就可以正常訪問apache網站了。