Apache
查看是否安装过Apache
rpm -qa | grep httpd
有就卸载httpd
yum remove -y “httpd*”
重新安装httpd
yum install -y httpd
启动
systemctl start httpd
添加开机启动
systemctl enable httpd
默认网站主页位于默认目录/www/html/中。若要发布自己的网站内容,替换index.html主页内容即可
安装mysql
https://blog.youkuaiyun.com/RougeK/article/details/108676065
安装PHP
https://blog.youkuaiyun.com/RougeK/article/details/108676082
测试
创建测试文件
/www/html/index.php
写入内容 “<?php phpinfo(); ?>”
重启测试
使用浏览器访问http://172.16.12.100/index.php
如果显示PHP测试页面,则说明php安装成功