How to Configure EPEL Repository on CentOS 6.4 x86_64

The EPEL repository is an additional resource that curates, maintains, and manages a high-quality collection of supplementary packages for Enterprise Linux, including but not limited to Red Hat Enterprise Linux (RHEL) and CentOS server. By leveraging the EPEL repository, you can install third-party software such as Nagios, Bugzilla, phpMyAdmin, and other standard open-source software using the yum command. While these repositories are not officially supported by CentOS, they offer more current versions of popular applications like PHP or MySQL.

This guide will walk you through the process of setting up the EPEL Repository on CentOS 6.4 x86_64.

For a more comprehensive understanding of web servers, you can visit our guides on Apache, Nginx, and LiteSpeed, we have detailed articles on those as well.

Step 1: Download and Import the GPG Keys for EPEL Software Packages

[root@centos64 ~]# wget http://ftp.riken.jp/Linux/fedora/epel/RPM-GPG-KEY-EPEL-6
[root@centos64 ~]# rpm --import RPM-GPG-KEY-EPEL-6
[root@centos64 ~]# rm -f RPM-GPG-KEY-EPEL-6

Step 2: Download and Install EPEL Repository for 64-bit CentOS

[root@centos64 ~]# wget http://ftp.riken.jp/Linux/fedora/epel/6/x86_64/epel-release-6-8.noarch.rpm
[root@centos64 ~]# rpm -ivh epel-release-6-8.noarch.rpm
Preparing... ########################################### [100%]
1:epel-release ########################################### [100%]

Commands Mentioned

  • wget – This command is used to download files from the internet.
  • rpm –import – This command is used to import a public key into the RPM database.
  • rm -f – This command is used to remove files.
  • rpm -ivh – This command is used to install a new package.
See also  How to Install phpMyAdmin on CentOS 6.2 Server

Conclusion

Setting up the EPEL repository on CentOS 6.4 x86_64 is a straightforward process that involves downloading and importing the GPG keys for EPEL software packages, and then downloading and installing the EPEL repository. This repository is a valuable resource for installing third-party software and getting more current versions of popular applications.

Remember, while EPEL repository is not officially supported by CentOS, it is a reliable source for many users. However, always ensure to follow best practices when installing and configuring any software on your server. For more information on different types of hosting, you can check out our guides on dedicated server, VPS server, cloud hosting, and shared hosting.

See also  How to Setup Private DNS With Bind9 Chroot on CentOS 6.2 VPS

FAQ

  1. What is the EPEL repository?

    The EPEL repository is an additional resourcethat creates, maintains, and manages a high-quality set of additional packages for Enterprise Linux, including but not limited to, Red Hat Enterprise Linux (RHEL) and CentOS server.

  2. Why should I use the EPEL repository?

    The EPEL repository allows you to install third-party software such as Nagios, Bugzilla, phpMyAdmin, and other standard open-source software using the yum command. It provides more current versions of popular applications like PHP or MySQL.

  3. How can I download and import the GPG keys for EPEL software packages?

    You can download and import the GPG keys for EPEL software packages by using the wget command to download the key, the rpm –import command to import it, and the rm -f command to remove the downloaded key file.

  4. How can I install the EPEL repository for 64-bit CentOS?

    You can install the EPEL repository for 64-bit CentOS by using the wget command to download the EPEL repository package and the rpm -ivh command to install it.

  5. What is repoview and how can I use it?

    Repoview is a utility that allows you to browse and explore different versions of the EPEL package set. You can use it to find packages for different architectures and sources.

Comments

1 Comment

Leave a Reply

Your email address will not be published. Required fields are marked *