Tutorial

How To Install Linux, nginx, MySQL, PHP (LEMP) stack on CentOS 6

Published on June 13, 2012
How To Install Linux, nginx, MySQL, PHP (LEMP) stack on CentOS 6
Not using CentOS 6?Choose a different version or distribution.
CentOS 6

Status: Deprecated

This article covers a version of CentOS that is no longer supported. If you are currently operating a server running CentOS 6, we highly recommend upgrading or migrating to a supported version of CentOS.

Reason: CentOS 6 reached end of life (EOL) on November 30th, 2020 and no longer receives security patches or updates. For this reason, this guide is no longer maintained.

See Instead:
This guide might still be useful as a reference, but may not work on other CentOS releases. If available, we strongly recommend using a guide written for the version of CentOS you are using.

The following DigitalOcean tutorial may be of interest, as it outlines installing a LEMP stack on a CentOS 7 server:


About Lemp

LEMP stack is a group of open source software to get web servers up and running. The acronym stands for Linux, nginx (pronounced Engine x), MySQL, and PHP. Since the server is already running CentOS, the linux part is taken care of. Here is how to install the rest.

Step One—Install the Required Repositories

We will be installing all of the required software with Yum. However, because nginx is not available straight from CentOS, we'll need to install the epel repository.

sudo yum install epel-release

Step Two—Install MySQL

The next step is to begin installing the server software on the virtual private server, starting with MySQL and dependancies.

 sudo yum install mysql-server

Once the download is complete, restart MySQL:

sudo /etc/init.d/mysqld restart

You can do some configuration of MySQL with this command:

sudo /usr/bin/mysql_secure_installation

The prompt will ask you for your current root password.

Since you just installed MySQL, you most likely won’t have one, so leave it blank by pressing enter.

Enter current password for root (enter for none): 
OK, successfully used password, moving on...

Then the prompt will ask you if you want to set a root password. Go ahead and choose Y and follow the instructions.

CentOS automates the process of setting up MySQL, asking you a series of yes or no questions.

It’s easiest just to say Yes to all the options. At the end, MySQL will reload and implement the changes.

By default, a MySQL installation has an anonymous user, allowing anyone
to log into MySQL without having to have a user account created for
them.  This is intended only for testing, and to make the installation
go a bit smoother.  You should remove them before moving into a
production environment.

Remove anonymous users? [Y/n] y                                            
 ... Success!

Normally, root should only be allowed to connect from 'localhost'.  This
ensures that someone cannot guess at the root password from the network.

Disallow root login remotely? [Y/n] y
... Success!

By default, MySQL comes with a database named 'test' that anyone can
access.  This is also intended only for testing, and should be removed
before moving into a production environment.

Remove test database and access to it? [Y/n] y
 - Dropping test database...
 ... Success!
 - Removing privileges on test database...
 ... Success!

Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.

Reload privilege tables now? [Y/n] y
 ... Success!

Cleaning up...

All done!  If you've completed all of the above steps, your MySQL
installation should now be secure.

Thanks for using MySQL!

Step Three—Install nginx

As with MySQL, we will install nginx on our virtual private server using yum:

sudo yum install nginx

nginx does not start on its own. To get nginx running, type:

sudo /etc/init.d/nginx start

You can confirm that nginx has installed on your virtual private server by directing your browser to your IP address.

You can run the following command to reveal your server’s IP address.

ifconfig eth0 | grep inet | awk '{ print $2 }'

Step Four—Install PHP

The php-fpm package is located within the REMI repository, which, at this point, is disabled. The first thing we need to do is enable the REMI repository and install php and php-fpm:

sudo yum install php-fpm php-mysql

Step Five—Configure php

We need to make one small change in the php configuration. Open up php.ini:

 sudo vi /etc/php.ini

Find the line, cgi.fix_pathinfo=1, and change the 1 to 0.

cgi.fix_pathinfo=0

If this number is kept as a 1, the php interpreter will do its best to process the file that is as near to the requested file as possible. This is a possible security risk. If this number is set to 0, conversely, the interpreter will only process the exact file path—a much safer alternative. Save and Exit.

Step Six—Configure nginx

Open up the default nginx config file:

sudo vi /etc/nginx/nginx.conf

Raise the number of worker processes to 4 then save and exit that file.

Now we should configure the nginx virtual hosts.

In order to make the default nginx file more concise, the virtual host details are in a different location.

sudo vi /etc/nginx/conf.d/default.conf

The configuration should include the changes below (the details of the changes are under the config information):

#
# The default server
#
server {
    listen       80;
    server_name example.com;

   
    location / {
        root   /usr/share/nginx/html;
        index index.php  index.html index.htm;
    }

    error_page  404              /404.html;
    location = /404.html {
        root   /usr/share/nginx/html;
    }

    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/html;
    }

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    location ~ \.php$ {
        root           /usr/share/nginx/html;
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME   $document_root$fastcgi_script_name;
        include        fastcgi_params;
    }
}

Here are the details of the changes:

  • Add index.php within the index line.
  • Change the server_name to your domain name or IP address (replace the example.com in the configuration)
  • Change the root to /usr/share/nginx/html;
  • Uncomment the section beginning with "location ~ \.php$ {",
  • Change the root to access the actual document root, /usr/share/nginx/html;
  • Change the fastcgi_param line to help the PHP interpreter find the PHP script that we stored in the document root home.

Save and Exit

Open up the php-fpm configuration:

sudo vi /etc/php-fpm.d/www.conf

Replace the apache in the user and group with nginx:

[...]
; Unix user/group of processes
; Note: The user is mandatory. If the group is not set, the default user's group
;	will be used.
; RPM: apache Choosed to be able to access some dir as httpd
user = nginx
; RPM: Keep a group allowed to write in log dir.
group = nginx
[...]

Finish by restarting php-fpm.

sudo service php-fpm restart

Step Seven—RESULTS: Create a php info page

Although LEMP is installed, we can still take a look and see the components online by creating a quick php info page

To set this up, first create a new file:

sudo vi /usr/share/nginx/html/info.php

Add in the following line:

<?php
phpinfo();
?>

Then Save and Exit.

Restart nginx so that all of the changes take effect:

sudo service nginx restart

Finish up by visiting your php info page (make sure you replace the example ip address with your correct one): http://12.34.56.789/info.php

It should look similar to this.

Step Eight—Set Up Autostart

You are almost done. The last step is to set all of the newly installed programs to automatically begin when the VPS boots.

sudo chkconfig --levels 235 mysqld on
sudo chkconfig --levels 235 nginx on
sudo chkconfig --levels 235 php-fpm on
By Etel Sverdlov

Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.

Learn more about our products

About the author(s)

Etel Sverdlov
Etel Sverdlov
See author profile
Category:
Tutorial

Still looking for an answer?

Ask a questionSearch for more help

Was this helpful?
 
40 Comments
Leave a comment...

This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Why does it install httpd (apache) when I try to install PHP-fpm?

Etel Sverdlov
DigitalOcean Employee
DigitalOcean Employee badge
September 6, 2012

Apache is a dependency of PHP and gets installed at the same time.

You can remove it from your server later with the command: “sudo yum remove httpd”

Etel Sverdlov
DigitalOcean Employee
DigitalOcean Employee badge
September 6, 2012

I have updated the article—you should now be able to complete it without Apache installing.

Before restart the service php-fpm, is necessary change in the file /etc/php-fpm.d/www.conf: of: user = apache group = apache

to: user = nginx group = nginx

Etel Sverdlov
DigitalOcean Employee
DigitalOcean Employee badge
September 20, 2012

Thank you for the tip! I have added it to the article.

PHP_FPM configuration file location is /etc/php-fpm.conf

Also does this works on 32 and 64 bit?

How do you add domains?

Etel Sverdlov
DigitalOcean Employee
DigitalOcean Employee badge
October 5, 2012

This tutorial should work on both 32 and 64 bit systems. The php-fpm configuration continues in the /etc/php-fpm.d/www.conf file.

You can see how to set up VIrtual Hosts (server blocks) here: https://www.digitalocean.com/community/articles/how-to-set-up-nginx-virtual-hosts-server-blocks-on-centos-6

And how to set up a host name here: https://www.digitalocean.com/community/articles/how-to-set-up-a-host-name-with-digitalocean

Followed all of above steps, but when I try to open http://12.34.56.789/info.php, getting “No input file specified.” always.

Any clues?

I have the same problem, and it is because I make a mistake. I don’t change ‘root’ to ‘/usr/share/nginx/html’.

location ~ .php$ { root /usr/share/nginx/html; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; }

In my above comment, when I said http://12.34.56.789/info.php, I already have changed 12.34.56.789 to my IP xx.xx.xx.xx…

Just clarification :)

Etel Sverdlov
DigitalOcean Employee
DigitalOcean Employee badge
October 5, 2012

I ran through this tutorial this morning on a fresh CentOS droplet, and it was completed without issues.

Is it possible that not all of the required changes were made in the nginx configuration file? (This, I think, would be place where the most errors may occur).

Be sure that you have modified all of the required lines in the nginx configuration file, including making the needed changes in the location ~ .php$ section.

If you’re still having a problem paste us your nginx config and we can help go through it.

Thanks.

http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm

The 6-7 release is no longer active via the link in the first section of this post. Just a heads up in case someone encounters a 404 when attempting to install the RPM.

Etel Sverdlov
DigitalOcean Employee
DigitalOcean Employee badge
January 4, 2013

Thank you! I have updated it.

Great tutorial! It seems like my VM is not able to process info.php file as I get a save file pop up window that says “You have chosen to open Info.php which is a BIN file from http://localhost Would you like to save this file?” I followed all the steps above with success. Please help.

Found the answer!! Modified “server_name _;” to “server_name localhost;” on nginx configuration and restarted nginx. worked like a charm!!

Etel Sverdlov
DigitalOcean Employee
DigitalOcean Employee badge
January 7, 2013

That’s a good point. I updated the configuration to include a domain in the server_name.

IMHO the writer in not OP server but she is a professional journalist :D

Got my SCO Unix certification in 1984…

First Droplet - First Try. This was as easy as could ever be hoped for. Not a single error message.

Thanks for the great (and accurate) instructions.

I’ve a problems with No input file specified.

Here in my: nginx.conf http://pastebin.com/8hfBZ7p5 default.conf http://pastebin.com/Kn4amsuz

Moisey Uretsky
DigitalOcean Employee
DigitalOcean Employee badge
January 31, 2013

Check your error log output for more details and also you can do a quick check on your php.ini to see if “open_basedir” is set to point to your document root, if its not, try updating to that and see if that helps.

Otherwise also please provide the error log output as that will help us troubleshoot.

Thank You!!!

Wow… thank you for the instructions… saved a bunch of time. No doubt it took a while for you to write and get it perfect… thanks again

I have the same problem as above where when I goto the info.php file firefox starts a download of the php file. I did the fix listed above and entered a domain name, tried my IP, and tried localhost in the nginx conf file with no change.

In order to avoid TCP/IP overhead make PHP-FPM Use A Unix Socket instead of network:

1)vi /etc/php-fpm.d/www.conf ;listen = 127.0.0.1:9000 listen = /tmp/php5-fpm.sock

2)/etc/init.d/php-fpm reload

3)vi /etc/nginx/conf.d/default.conf fastcgi_pass unix:/tmp/php5-fpm.sock;

4)/etc/init.d/nginx reload

Create a phpinfo() page and verify configuration.

hei,your answer solve my puzzle,Thanks

If you do what celson.simon then you will have the change the permissions of /var/lib/php/session to nginx.nginx too. Otherwise you app will not save sessions.

Should I do more than the tutorial to make it online? I tried twice, but I couldn’t reach to server via browser. I couldn’t see even nginx test page.

Kamal Nasser
DigitalOcean Employee
DigitalOcean Employee badge
May 5, 2013

@bilal What the article says is enough to get your website online. Make sure nginx is up and running and is listening on port 80 (run netstat -plutn to verify).

Hi @Kamal, thanks for reply. Nginx is running, I check it via “service nginx status”. I saw one line which is related to nginx when I run “netstat -plutn”:

Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 3180/nginx.conf

I have the php info problem as well. Tried changing to localhost/domain name, both didn’t work.

Kamal Nasser
DigitalOcean Employee
DigitalOcean Employee badge
May 30, 2013

@xdoki26 can you please explain your problem in details?

@bilal What happens when you try to browse to your droplet’s IP?

Any solution for “No input file specified.” ?

Thanks

Kamal Nasser
DigitalOcean Employee
DigitalOcean Employee badge
June 8, 2013

@arisdario what does (“tail /var/log/php5-fpm.log”) output?

Does anyone know how to remove mysql, so that i can install a fresh copy of it? Thank you.

in the section for /etc/nginx/conf.d/default.conf what do I have to do here… “Change the root to access the actual document root, /usr/share/nginx/html;”

also not sure what to do here… “Change the fastcgi_param line to help the PHP interpreter find the PHP script that we stored in the document root home.”

Kamal Nasser
DigitalOcean Employee
DigitalOcean Employee badge
June 12, 2013

@commerce that list explains what has been changed in the config file - you only have to replace your copy with the one in the article.

I installed LEMP stack following the guide. But error happened when i install phpmyadmin, it may due to adding of epel and remi repositories.


Error: Package: php-cli-5.3.3-22.el6.i686 (base) Requires: php-common(x86-32) = 5.3.3-22.el6 Installed: php-common-5.4.16-1.el6.remi.i686 (@remi) php-common(x86-32) = 5.4.16-1.el6.remi Available: php-common-5.3.3-22.el6.i686 (base) php-common(x86-32) = 5.3.3-22.el6

problem solved by: sudo yum --enablerepo=remi install phpmyadmin

For the Ubuntu 12.04 tutorial on this same LEMP type of setup there is also a section on getting Varnish (and wordpress too); Wordpress bits are easy - but how do i get Varnish running?

Join the Tech Talk
Success! Thank you! Please check your email for further details.

Please complete your information!

Become a contributor for community

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

DigitalOcean Documentation

Full documentation for every DigitalOcean product.

Resources for startups and SMBs

The Wave has everything you need to know about building a business, from raising funding to marketing your product.

Get our newsletter

Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.

New accounts only. By submitting your email you agree to our Privacy Policy

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.