1. 程式人生 > >centos更換yum源,安裝PHP7.1,安裝redis,安裝nginx

centos更換yum源,安裝PHP7.1,安裝redis,安裝nginx

檢視CentOS版本

cat /etc/centos-release

更換yum源

#找到yum原始檔替換掉
cd /etc/yum.repos.d
mv CentOS-Base.repo CentOS-Base.repo.backup   #備份原yum源
wget -O CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo  #尋找新的yum源替換掉
yum makecache   #把庫裡面的包快取下來,方便尋找
yum -y update   #檢視

安裝PHP7.1

yum search php71w
#發現搜尋不到
#所以得用 rpm 安裝PHP7對應的yum源 rpm -ivh http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-5.noarch.rpm #顯示下面這樣就更換成功了 Preparing... ################################# [100%] Updating / installing... 1:epel-release-7-11 warning: /etc/yum.repos.d/epel.repo created as /etc/yum.repos
.d/epel.repo.rpmnew ################################# [100%] yum search php71 #搜出來一大堆PHP拓展,安裝就可以了

安裝redis

#因為官方yum源沒有redis,所以得安裝一個第三方yum源
yum install epel-release

#安裝redis
yum install redis

#啟動redis
/bin/systemctl restart redis.service
#檢視redis狀態
service redis status
#修改redis配置   (開機啟動/埠/密碼/繫結ip)
vim /etc/redis.conf
yum install nginx   #如果以上過程已經安裝nginx,檢視一下狀態
service nginx status

如果沒有安裝nginx並且yum找不到nginx,則需要使用rpm安裝nginx的yum源