安裝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影片教學
以上是php伺服器怎麼安裝的詳細內容。更多資訊請關注PHP中文網其他相關文章!