Chinaunix首页 | 论坛 | 博客
  • 博客访问: 765932
  • 博文数量: 217
  • 博客积分: 2401
  • 博客等级: 大尉
  • 技术积分: 2030
  • 用 户 组: 普通用户
  • 注册时间: 2008-03-16 06:58
个人简介

怎么介绍?

文章分类

全部博文(217)

文章存档

2023年(2)

2022年(3)

2021年(29)

2020年(12)

2019年(5)

2018年(5)

2017年(5)

2016年(3)

2015年(6)

2014年(12)

2013年(16)

2012年(9)

2011年(6)

2010年(15)

2009年(30)

2008年(59)

我的朋友

分类: LINUX

2016-05-05 13:49:16




This article describes how to configure a CentOS or Red Hat Enterprise Linux system to use the . The EPEL repository provides useful software packages that are not included in the official CentOS or Red Hat Enterprise Linux repositories.

Instructions are also included for installing other third-party repositories, the  and the . Whereas EPEL provides only software that is not in the CentOS and Red Hat Enterprise Linux official repositories, IUS and Remi provide newer versions of software (like MySQL and PHP) that exists in the official repositories.

Note: Exercise caution when using any third-party repository. If you have a managed support agreement, contact your provider before following the instructions in this article to ensure that you don’t create an unsupported server configuration.

Install the EPEL repository

You install the EPEL repository by downloading the appropriate RPM package for your system and installing it. The following instructions use the 64-bit packages that work with Rackspace Cloud Servers instances.

CentOS Extras repository

The CentOS Extras repository includes a package to install EPEL, and is enabled by default. To install the EPEL package, run the following command:

sudo yum install epel-release 

If that command doesn’t work, perhaps because the CentOS Extras repository is disabled, the following sections provide manual installation instructions based on your distribution version.

  • CentOS and Red Hat Enterprise Linux 5.x

    wget 
    sudo rpm -Uvh epel-release-5*.rpm 
  • CentOS and Red Hat Enterprise Linux 6.x

    wget 
    sudo rpm -Uvh epel-release-6*.rpm 
  • CentOS and Red Hat Enterprise Linux 7.x

    wget 
    sudo rpm -Uvh epel-release-latest-7*.rpm 

If you get a File Not Found error message when trying to download the package, the version number might have changed. You can access the latest version of the RPM installer from the . The wiki page also includes additional instructions for Red Hat Network subscribers who are installing the EPEL repository.

Install the IUS repository (optional)

The IUS repository provides newer versions of some software in the official CentOS and Red Hat repositories. The IUS repository depends on the EPEL repository.

The package names in the IUS repository are different from the package names used in the official repositories. The difference helps to avoid unintentional conflicts or software version updates.

Note: Because IUS uses package names that are different from the package names in the official repositories, we recommend IUS over Remi for Rackspace customers with managed support levels that include server software. Managed servers automatically update nightly by default, which can cause unplanned upgrades if package names are the same in more than one enabled repository.

Installing the IUS repository is a matter of downloading the appropriate RPM package for your system and installing it. The following instructions use the 64-bit packages that work with our Cloud Server instances.

  • CentOS 5.x

    wget 
    sudo rpm -Uvh ius-release*.rpm 
  • CentOS 6.x

    wget 
    sudo rpm -Uvh ius-release*.rpm 
  • CentOS 7.x

    wget 
    sudo rpm -Uvh ius-release*.rpm 
  • Red Hat 5.x

    wget 
    sudo rpm -Uvh ius-release*.rpm 
  • Red Hat 6.x

    wget 
    sudo rpm -Uvh ius-release*.rpm 
  • Red Hat 7.x

    wget 
    sudo rpm -Uvh ius-release*.rpm 

If you get a File Not Found error message when trying to download the RPM, the version number might have changed. You can access the latest version of the repository package from the .

Upgrade installed packages to IUS versions

If you already have a software package installed that you want to upgrade to a newer version in the IUS repository, install the IUS yum plug-in for package replacement to simplify the upgrade process.

sudo yum install yum-plugin-replace 

The plug-in provides a yum replace command that replaces a specified package and installs any required dependencies at the same time. For example, to replace the installed PHP package with the PHP 5.3 package from the IUS repository, run the following command:

sudo yum replace php --replace-with php53 

For more information, see the .

Install the Remi repository (optional)

The Remi repository provides newer versions of the software in the core CentOS and Red Hat Enterprise Linux repositories. The Remi repository depends on the EPEL repository.

Package names in the Remi repository are the same as the package names used in the official repositories. This similarity can result in inadvertent package upgrades when you run an update with yum, so use the Remi repository with care.

Note: Because Remi uses package names that are the same as the package names in the official repositories, we do not recommend Remi for Rackspace customers with a managed level of support. Managed servers automatically update nightly by default, which can cause unplanned upgrades if the Remi repository is enabled. If you require the Remi repository or another repository with package name conflicts, contact Rackspace Support before applying any upgrades to ensure continued support for your server.

You install the Remi repository by downloading the appropriate RPM package for your system and installing it. The following instructions use the 64-bit packages that work with Cloud Servers instances.

  • CentOS and Red Hat Enterprise Linux 5.x

    wget 
    sudo rpm -Uvh remi-release-5*.rpm 
  • CentOS and Red Hat Enterprise Linux 6.x

    wget 
    sudo rpm -Uvh remi-release-6*.rpm 
  • CentOS and Red Hat Enterprise Linux 7.x

    wget 
    sudo rpm -Uvh remi-release-7*.rpm 

If you get a File Not Found error message when trying to download the package, the version number might have changed. You can access the latest version of the RPM installer from the Remi Repository Configuration page. The configuration page also includes additional instructions for Red Hat Network subscribers who are installing the Remi repository.

Enable the Remi repository

The Remi repository is disabled by default.

To use the Remi repository only when you know you need it, use the --enablerepo=remi option when installing a package. For example:

sudo yum --enablerepo=remi install php-tcpdf 

If you want to permanently enable the Remi repository, you need to edit the yum configuration file for Remi.

Open the repository configuration file by using a text editor of your choice:

sudo nano /etc/yum.repos.d/remi.repo
Edit the [remi] portion of the file to set the enabled option to 1. This action enables the Remi repository by default.
name=Les RPM de remi pour Enterprise Linux $releasever - $basearch
#baseurl=
mirrorlist=
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-remi
failovermethod=priority 

Check available repositories

You can see if the repositories that you need are installed and enabled by running the following command:

yum repolist 

Some repositories, like Remi, are disabled by default. To list disabled repositories, run the following command:

yum repolist disabled
阅读(1772) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~