yum安裝apache與php的方法:先執行指令「yum install -y httpd」安裝apache;然後啟動apache;接著執行指令「yum install -y php」安裝php;最後新建一個PHP頁面進行測試即可。
yum安裝apache和php
一:安裝apache
[root@ser6-52 ~]# yum install -y httpd
#验证是否安装成功 [root@ser6-52 ~]# 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 [root@ser6-52 ~]# 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: [root@ser6-52 ~]# service httpd restart Stopping httpd: [ OK ] Starting httpd: [ OK ]
沒有再回報這個錯誤了。
#設定係統讓Apache 隨系統啟動:
[root@ser6-52 ~]# 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
[root@ser6-52 conf.d]# yum install -y php
需要重新啟動Apache 服務:
[root@ser6-52 conf.d]# service httpd restart Stopping httpd: [ OK ] Starting httpd: [ OK ]
三:測試
為了測試是否安裝成功,你可以新建一個PHP 頁面進行測試,使用vim 編輯器新建:
[root@localhost ~]# 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的詳細內容。更多資訊請關注PHP中文網其他相關文章!