centos yum升级php

centos yum升级php5.3.3到最5.6.3

不要轻易升级,否则后果很严重!

注意事项:

1 升级后之前的php扩展不会丢失 自动会安装对应最新php的扩展
2 升级后需重启下apache 才能看到
3 升级时候会提示 Loaded plugins: fastestmirror Determining fastest mirrors 参考后面修改,重新执行即可 
4 如果失败一般是yum源的问题 注意是对应的64位

centos6.5的php预设5.3.3这个版本,其实对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*

解决yum下 Loaded plugins: fastestmirror Determining fastest mirrors 的问题

http://blog.sina.com.cn/s/blog_7e513d7e01015j9b.html

时间: 2024-10-09 02:51:03

centos yum升级php的相关文章

centos yum 升级Python2.6 到 2.7

背景: 开发部需要使用python2.7,由于公网的环境python版本都是系统自带的,版本是2.6,需要升级,最好是通过RPM升级. 实施步骤: 1,下载nux 的release文件 wget http://li.nux.ro/download/nux/dextop/el6/i386/nux-dextop-release-0-2.el6.nux.noarch.rpm rpm -ivh nux-dextop-release-0-2.el6.nux.noarch.rpm yum -y instal

CentOS yum升级GCC到4.8

wget http://people.centos.org/tru/devtools-2/devtools-2.repo mv devtools-2.repo /etc/yum.repos.d yum install devtoolset-2-gcc devtoolset-2-binutils devtoolset-2-gcc-c++ 三个安装包会被装在 /opt/rh/devtoolset-2/root/ 中 更新软连接: mv /usr/bin/gcc /usr/bin/gcc-4.4.7

使用yum升级CentOS 6.5 kernel至3.10.52

we will use ELRepo to install kernel 1. rpm --import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org 2. rpm -Uvh http://www.elrepo.org/elrepo-release-6-6.el6.elrepo.noarch.rpm 3. yum --enablerepo=elrepo-kernel -y install kernel-lt 4. vi /etc/grub.conf

Linux:centos内核升级

centos内核升级 centos升级2.6内核到3.10 在yum的ELRepo源中,有 m ain l ine(3.13.1). l ong- t erm(3.10.28)这2个内核版本,long-time为长期支持. 查看看当前内核版本 uname -r 安装elrepo(http://elrepo.org/tiki/tiki-index.php) 导入public key rpm --import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org

CentOS 7 升级内核到4.4.6 LTS

CentOS 7 升级内核到4.4.6 LTSrpm --import https://www.elrepo.org/RPM-GPG-KEY-elrepo.orgrpm -Uvh http://www.elrepo.org/elrepo-release-7.0-2.el7.elrepo.noarch.rpmyum --enablerepo=elrepo-kernel install kernel-lt-devel kernel-lt -yawk -F\' '$1=="menuentry &quo

利用yum升级操作系统版本(目前最新6.6)

1. 查看操作系统版本 [[email protected] ~]# cat /etc/redhat-releaseCentOS release 6.4 (Final) 2. 让操作系统能够与外网通信 [[email protected] ~]# ping www.baidu.comPING www.a.shifen.com (119.75.218.70) 56(84) bytes of data.64 bytes from 119.75.218.70: icmp_seq=1 ttl=128 t

centos yum源配置 与yum配置文件

参考博客 http://www.cnblogs.com/mchina/archive/2013/01/04/2842275.html 1.centos . yum配置文件在目录 /etc/yum.repos.d目录下 yum主要是自动化的升级 安装 和卸载 rpm软件包 David Camp 博客园 首页 新随笔 联系 订阅 管理 随笔-115  文章-0  评论-667 CentOS yum 源的配置与使用 一.yum 简介 yum,是Yellow dog Updater, Modified

Centos下升级Python

Centos下升级Python 一.查看本机Pyhton版本 本机Centos6.5 预带Pyhton版本为2.6.6 # python --version >>Python 2.6.6 二.下载欲升级最新Python安装包 可以去官网找最新安装包 https://www.python.org/downloads/ 三.编译安装Python wget   tar -zxvf  Python-2.7.10.tgz cd Python-2.7.10 ./configure make &&a

CentOS 5升级PHP5.1为PHP5.3的方法

CentOS 5升级PHP5.1为PHP5.3的方法 我的VPS是安装的CentOS 5.x,默认安装的PHP是5.1.6,想升级为PHP5.3,经过搜索加摸索,升级成功,作一笔记记录一下. 方法一:经过我实际验证升级成功 service httpd stop //首先停止Apache服务 yum remove php* //解除PHP 5.1.6的版本 yum install php53 //安装PHP 5.3 yum install php53 yum install php53-cli y