当前位置:   article > 正文

yum安装php和apache先装哪个,yum如何安装apache与php

先装apache 还是php

yum如何安装apache与php2020-07-14 04:00:43

227c8f5c14014e5413d6aeb4b3285017.png

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 httpdhttpd-2.2.15-47.el6.centos.x86_64httpd-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.confvi /etc/httpd/conf/httpd.conf

在文件最后添加:ServerName 127.0.0.1:80

#重启apache:[root@ser6-52 ~]# service httpd restartStopping 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 restartStopping 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中文网!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/669105
推荐阅读
相关标签
  

闽ICP备14008679号