首頁  >  文章  >  後端開發  >  php伺服器怎麼安裝

php伺服器怎麼安裝

王林
王林原創
2019-10-15 17:55:482331瀏覽

php伺服器怎麼安裝

安裝apache

yum install httpd

啟動apache

systemctl start httpd.service

查看運行狀態

systemctl status httpd.service

編輯測試頁面

echo “xingming”>/var/www/html/index.html

開啟瀏覽器輸入公網ip位址,結果如下:

php伺服器怎麼安裝

安裝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中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn