centos6 下的apache安裝

peng163fj發表於2015-07-24

二、安裝 Apache 元件

  由於 CentOS 已經封裝了 Apache,直接執行安裝:

[root@localhost ~]# yum install httpd

同樣配置系統讓 Apache 隨系統啟動:

[root@localhost ~]# chkconfig --levels 235 httpd on

配置完畢,啟動 Apache:

[root@localhost ~]# /etc/init.d/httpd start

  此時已經可以訪問你的伺服器,不出意外的話,能夠看到 “Apache 2 Test Page powered by CentOS” 的測試頁面。注意,如果其他機器訪問這臺服務無法顯示這個頁面,而直接在這臺伺服器上可以訪問的話,一般情況下是 CentOS 自帶的防火牆禁止了。你只需要進入防火牆,將 “WWW” 對應的 “80” 埠開啟即可。

注意:在 CentOS 中 Apache 的預設根目錄是 /var/www/html,配置檔案 /etc/httpd/conf/httpd.conf。其他配置儲存在 /etc/httpd/conf.d/ 目錄。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/21302630/viewspace-1749366/,如需轉載,請註明出處,否則將追究法律責任。

相關文章