安装apache
yum install httpd
启动apache
systemctl start httpd.service
查看运行状态
systemctl status httpd.service
编辑测试页面
echo “xingming”>/var/www/html/index.html
打开浏览器输入公网ip地址,结果如下:
安装MySQL
yum install mariadb-server mariadb systemctl start mariadb //运行 systemctl status mariadb //查看运行状态 # mysql -u root -p //登录mysql Enter password: 【输入原来的密码】 //密码默认为空 mysql>usemysql;
修改密码
mysql> update user setpassword=passworD("test") where user='root'; mysql> flush privileges; mysql> exit;
安装php环境
yum install php php-mysql
重新启动apache
systemctl restart httpd.service
推荐教程:PHP视频教程
Atas ialah kandungan terperinci php服务器怎么安装. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!