美文网首页
升級 Centos 6.5 的 php 版本

升級 Centos 6.5 的 php 版本

作者: 庄宁文 | 来源:发表于2017-02-07 11:12 被阅读0次

    Centos 6.5 的 php 預設是用 5.3.3 這個版本號

    最近想要改用 Laravel 4.1 發現需要 5.3.7 才能用,所以我們要來升級一下

    其實對 Centos 的部分來說就是換掉 yum 的資料庫

    分以下步驟進行

    wget http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm

    wget http://rpms.famillecollet.com/enterprise/remi-release-6.rpm

    sudo rpm -Uvh remi-release-6*.rpm epel-release-6*.rpm

    sudo vim /etc/yum.repos.d/remi.repo

    進去把所有的enabled 參數都改成 1

    yum –enablerepo=remi update php* mysql*

    最後再進行一次升級的動作

    yum -y update php*

    這樣就可以啦!

    附帶一提,我們可以直接在指令模式中查詢 php 的版本

    php -v

    相关文章

      网友评论

          本文标题:升級 Centos 6.5 的 php 版本

          本文链接:https://www.haomeiwen.com/subject/lxbpittx.html