How to install Nginx on CentOS using yum




+ Reply to Thread
Results 1 to 4 of 4

Thread: How to install Nginx on CentOS using yum

  1. #1
    Annie Arnold is offline Member
    Join Date
    Sep 2011
    Posts
    38
    Feedback Score
    0

    How to install Nginx on CentOS using yum

    CentOS - Installing Nginx via yum

    Nginx is a popular lightweight server for those who do not need the bulk and extra services that Apache may offer.
    This article will look at installing Nginx on a CentOS Slice using the 'yum' package manager.

    Yum

    Using the inbuilt package manager to install packages is a great idea as it solves dependency issues and you are assured of any security updates if, and when, they occur.
    However, one drawback can be that it is rare for a version upgrade to be placed into the repositories. As such, it is possible for a newer version of an application to be released and not be placed into the repository.
    EPEL

    To install Nginx using yum we will need to include the EPEL (Extra Packages for Enterprise Linux) repository. This repository was developed by the Fedora community to provide extra add-on packages for Fedora-based Redhat Enterprise Linux and it's other compatible offspring such as CentOS.
    One thing to keep in mind when adding extra repositories is that many include newer versions of packages that are readily available through the standard channels. This can cause problems as packages can be automatically upgraded and cease to function as expected.
    I want to make it clear that the EPEL repository is purely complimentary and only provides additional packages that are otherwise unavailable through the default repositories.
    Versions

    Using yum in conjunction with the EPEL repository, CentOS will install Nginx version 0.6.33.
    However, at the time of writing, the latest stable version of Nginx is 0.6.34. You can check the latest versions and change logs at the main nginx site.
    Which one you choose is, of course, entirely up to you.
    If you decide you would rather have a later version of Nginx than the one the EPEL repository provides, then please refer to the sister article (link on the way) which will take you through the process of installing Nginx from source.
    Installation and Dependencies

    Let's begin by installing the EPEL repository:
    Code:
    sudo rpm -Uvh http://download.fedora.redhat.com/pub/epel/5Server/x86_64/epel-release-5-3.noarch.rpm
    Installing nginx using Yum is now incredibly simple, thanks to EPEL, as it involves one command:
    Code:
    sudo yum install nginx
    As this will be the first package we install using EPEL, we will be asked to import the EPEL gpg-key.
    Code:
    warning: rpmts_HdrFromFdno: Header V3 DSA signature: NOKEY, key ID 217521f6 Importing GPG key 0x217521F6 "Fedora EPEL <epel@fedoraproject.org>" from /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL Is this ok [y/N]:
    This key is used to sign all packages that are associated with the EPEL repository to verify their validity.
    Once the gpg-key has been imported, the installation should proceed as expected.
    This will install any dependencies that Nginx requires and actually incorporates the experimental Perl module. You can read more documentation about this feature as well as many others at Nginx's English Wiki.
    Start

    One odd thing is that Nginx is not started automatically:
    Code:
    sudo /etc/init.d/nginx start
    Done

    Install nginx using yum on centos


    Navigate

    Now simply navigate to your IP address:
    Code:
    http://123.45.67.890
    and you will see the following welcome screen:


    Init Scripts

    As you would imagine when installing an application with the yum package manager, all init scripts have been created.
    However, we need to set up Nginx to start automatically if the slice is rebooted:
    Code:
    sudo /sbin/chkconfig nginx on
    Controlling nginx is done with these commands:
    Code:
    sudo /etc/init.d/nginx start ... sudo /etc/init.d/nginx stop ... sudo /etc/init.d/nginx reload ... sudo /etc/init.d/nginx restart
    You can also check the current status as well as the configuration syntax by using the following commands:
    Code:
    sudo /etc/init.d/nginx status ... sudo /etc/init.d/nginx configtest
    The configtest option is particularly useful for testing your Nginx configuration before actually implementing it with a reload or restart.
    That's it.
    Summary

    Using the yum package manager along with the EPEL repository makes the installation of Nginx and associated dependencies very simple indeed.
    The only thing to consider is the version disparity between the one offered by yum and the one available via source code.

  2. #2
    ramicn is offline Junior Member
    Join Date
    Jul 2011
    Posts
    1
    Feedback Score
    0
    man this is very nice man and well explained

  3. #3
    supljaja is offline Junior Member
    Join Date
    Aug 2011
    Posts
    1
    Feedback Score
    0
    trying it now thanks

  4. #4
    mustarjoe is offline Junior Member
    Join Date
    May 2011
    Posts
    1
    Feedback Score
    0
    Thanks bro

+ Reply to Thread

Visitors found this page by searching for:

yum install nginx x64

install nginx centos

nginx centos version

where is your nginx source code located? yum

installing nginx on centos

how to install and test nginx on centos

nginx centos

nginx centos for x64

nginx yum centos

install latest nginx centos

centos install nginx latest

yum nginx

centos : install nginx -php

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts