yum安裝apache與php的方法:首先執行命令「yum install -y httpd」安裝apache;然後啟動apache;接著執行命令「yum install -y php」安裝php;最後新建一個PHP頁面進行測試即可。
yum安裝apache和php
一:安裝apache
[[email protected] ~]# yum install -y httpd
#驗證是否安裝成功 [[email protected] ~]# rpm -qa | grep httpd httpd-2.2.15-47.el6.centos.x86_64 httpd-tools-2.2.15-47.el6.centos.x86_64
顯示已成功安裝。
#啟動apache [plain] view plain copy [[email protected] ~]# service httpd start Starting httpd: httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
假如,啟動的時候,出現如上:
Starting httpd: httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
需要修改 /etc/httpd/conf/httpd.conf
vi /etc/httpd/conf/httpd.conf
在檔案最後新增:ServerName 127.0.0.1:80
#重新啟動apache: [[email protected] ~]# service httpd restart Stopping httpd: [ OK ] Starting httpd: [ OK ]
沒有再報這個錯誤了。
#設定系統讓 Apache 隨系統啟動:
[[email protected] ~]# chkconfig --levels 235 httpd on
此時apache已經安裝好了,存取http://192.168.6.52/就可以看到如下介面(備註:192.168.6.52是你伺服器的ip)
注意:在CentOS 中 Apache 的預設根目錄是/var/www/html,組態檔 /etc/httpd/conf/httpd.conf。其他設定儲存在 /etc/httpd/conf.d/ 目錄。
二:安裝php
[[email protected] conf.d]# yum install -y php
需要重新啟動 Apache 服務:
[[email protected] conf.d]# service httpd restart Stopping httpd: [ OK ] Starting httpd: [ OK ]
三:測試
為了測試是否安裝成功,你可以新建一個 PHP 頁面進行測試,使用 vim 編輯器新建:
[[email protected] ~]# vi /var/www/html/info.php
輸入:welcome,dandan!
在瀏覽器裡輸入:http://192.168.6.52/info.php
可以看到:
說明安裝成功。
--apache也可以這樣啟動停止:
/usr/local/apache2/bin/apachectl start/stop
更多相關知識,請存取PHP中文網!
以上就是yum如何安裝apache與php的詳細內容,更多請關注TW511.COM其它相關文章!