当前位置:   article > 正文

yum安装apache和php_yum安装httpd-2.4.57.tar.gz和php-8.2.5.tar.gz

yum安装httpd-2.4.57.tar.gz和php-8.2.5.tar.gz
一:安装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
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/669128
推荐阅读
相关标签
  

闽ICP备14008679号