這篇文章主要講解了“l(fā)inux如何使用yum安裝php”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“l(fā)inux如何使用yum安裝php”吧!
我們提供的服務(wù)有:成都網(wǎng)站建設(shè)、成都做網(wǎng)站、微信公眾號開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、尋甸ssl等。為近千家企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的尋甸網(wǎng)站制作公司
linux使用yum安裝php的方法:1、執(zhí)行“mkdir /usr/local/php”命令;2、下載yum源的更新安裝包;3、安裝相關(guān)yum源安裝包;4、通過“yum install”命令安裝php即可。
一、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、安裝相關(guān)yum源安裝包(這里以centOS 7.x的為例)
rpm -Uvh epel-release-latest-7.noarch.rpm
rpm -Uvh webtatic-release.rpm
5、查看該源對應(yīng)的php安裝包命令(以PHP 為例)
yum list --enablerepo=webtatic | grep php
6、查找php 5.6版本的安裝包
yum search php56w
7、安裝Apache
yum install httpd httpd-devel
8、關(guān)閉firewalld防火墻
systemctl stop firewalld.service
systemctl disable firewalld.service
systemctl status firewalld
9、啟動apache
/bin/systemctl start httpd.service
此時用瀏覽器訪問你服務(wù)器IP地址 應(yīng)該是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【主頁】才會在瀏覽器顯示)
內(nèi)容如下:
<!DOCTYPE html>
<html>
<body>
<?php
echo "Hello World!";
?>
</body>
</html>
感謝各位的閱讀,以上就是“l(fā)inux如何使用yum安裝php”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對linux如何使用yum安裝php這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!
本文題目:linux如何使用yum安裝php
路徑分享:http://vcdvsql.cn/article6/pepgog.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站改版、搜索引擎優(yōu)化、小程序開發(fā)、Google、商城網(wǎng)站、品牌網(wǎng)站建設(shè)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)