首頁  >  文章  >  後端開發  >  linux怎麼使用yum安裝php

linux怎麼使用yum安裝php

藏色散人
藏色散人原創
2023-01-29 09:46:173775瀏覽

linux使用yum安裝php的方法:1.執行「mkdir /usr/local/php」指令;2、下載yum來源的更新安裝套件;3、安裝相關yum來源安裝套件;4、透過“yum install”指令安裝php即可。

linux怎麼使用yum安裝php

本教學操作環境:centos7系統、PHP5.6版、DELL G3電腦

linux怎麼使用yum安裝php?

Linux虛擬機器採用yum安裝php方法(自我安裝詳細步驟記錄)

PHP 伺服器 安裝分兩種 一種YUM 安裝  一種編譯安裝 。

(由於linux機制,每個資料夾都有他指定的含義,不可隨意使用,編譯安裝需要了解,資料夾分類信息,YUM 安裝則不需要去考慮,

#因為他已經幫你固定安裝了目錄,這就是網上為什麼推薦yum的原因) 

一、yum安裝php

1、mkdir /usr/local/php

2、cd /usr/local/php

3、下載yum來源的更新安裝套件

centOS 6.x來源

wget https://dl.fedoraproject.org/pub/epel/epel-release-latest-6.noarch.rpm
wget https://mirror.webtatic.com/yum/el6/latest.rpm

centOS 7.x來源

wget https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
wget https://mirror.webtatic.com/yum/el7/webtatic-release.rpm

4、安裝相關yum來源安裝套件(這裡以centOS 7.x的為例)

rpm -Uvh epel-release-latest-7.noarch.rpm
rpm -Uvh webtatic-release.rpm

5、查看該來源對應的php安裝套件指令(以PHP 為例)

yum list --enablerepo=webtatic | grep php

6、尋找php 5.6版本的安裝套件

yum search php56w

7、安裝Apache

yum install httpd httpd-devel

8、關閉firewalld防火牆

systemctl stop firewalld.service 
systemctl disable firewalld.service 
systemctl status firewalld

 

#9、啟動apache

/bin/systemctl start httpd.service

此時用瀏覽器存取你伺服器IP位址  應該是Testing 123檔案頁面。

10、安裝mysql【這裡因為之前使用tar套件安裝了mysql,所以不安裝】

11、啟動mysql

systetcl start mysql

***如果啟動mysql時報錯

Failed to start mysql.service: Unit mysql.service failed to load: No such file or directory.

Failed to start mysqld.service: Unit not found

則需要安裝mariadb-server並啟動,加入到開機自啟動

yum install -y mariadb-server
systemctl start mariadb.service
systemctl enable mariadb.service

12、安裝PHP

yum install php56w

13、重啟apache使php生效

/bin/systemctl restart httpd.service

14、查看PHP的版本

php -v

15、php的簡單使用

進入目錄/var/www/html

# vi index.php(必須是index.php【首頁】才會在瀏覽器顯示)

內容如下:

<!DOCTYPE html>
<html>
<body>
<?php
echo "Hello World!";
?>
</body>
</html>

推薦學習:《PHP影片教學

以上是linux怎麼使用yum安裝php的詳細內容。更多資訊請關注PHP中文網其他相關文章!

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