跳到主要内容

安装 Linux, nginx, MySQL, PHP (LEMP) stack on CentOS 6

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 neither nginx nor php-fpm are available straight from CentOS, we need to download two extra repositories to our virtual private server first.

sudo rpm -Uvh <http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm>
sudo rpm -Uvh <http://rpms.famillecollet.com/enterprise/remi-release-6.rpm>

Step Two—Install MySQL

安装 MySQL 和依赖

# 安装
sudo yum install mysql mysql-server
# 重启
sudo /etc/init.d/mysqld restart
# 配置
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 --enablerepo=remi 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 Related Tutorials

  • An Introduction to Droplet Metadata
  • How To Deploy a Rails App with Passenger and Nginx on Ubuntu 14.04
  • How To Create an AppArmor Profile for Nginx on Ubuntu 14.04
  • How To Measure MySQL Query Performance with mysqlslap
  • How to Protect your Server Against the Shellshock Bash Vulnerability 109 Comments You must be logged in to comment. Log In
  • B
  • I
  • UL
  • OL
  • Link
  • Code
  • Highlight
  • Table ● Notify me of replies to my comment ● https://s3-us-west-2.amazonaws.com/secure.notion-static.com/f74d0f12-3e7d-4358-bf98-7017040b6b4f/788ca0e3dab6a3f9aab9a9ea9e964c48.png keepitcoderSeptember 5, 2012 Why does it install httpd (apache) when I try to install PHP-fpm? ● https://s3-us-west-2.amazonaws.com/secure.notion-static.com/33fe8503-d070-4037-944a-1fa7b35b1ba1/bc5d1bb9748253947fc82f9b1e731697.jpg etelSeptember 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" ● https://s3-us-west-2.amazonaws.com/secure.notion-static.com/33fe8503-d070-4037-944a-1fa7b35b1ba1/bc5d1bb9748253947fc82f9b1e731697.jpg etelSeptember 6, 2012 I have updated the article—you should now be able to complete it without Apache installing. ● https://s3-us-west-2.amazonaws.com/secure.notion-static.com/b0de0740-5693-4563-b250-0deb1bad830a/db04446fda4bb8858889055442d7d185.png celson.simonSeptember 20, 2012 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 ● https://s3-us-west-2.amazonaws.com/secure.notion-static.com/33fe8503-d070-4037-944a-1fa7b35b1ba1/bc5d1bb9748253947fc82f9b1e731697.jpg etelSeptember 20, 2012 Thank you for the tip! I have added it to the article. ● https://s3-us-west-2.amazonaws.com/secure.notion-static.com/e02cc0b0-e284-405c-a898-4ddc3c1a243e/70cc7395482244ea0cedf9a8cdb02e88.png erickvogelerOctober 4, 2012 PHP_FPM configuration file location is /etc/php-fpm.conf Also does this works on 32 and 64 bit? ● https://s3-us-west-2.amazonaws.com/secure.notion-static.com/e02cc0b0-e284-405c-a898-4ddc3c1a243e/70cc7395482244ea0cedf9a8cdb02e88.png erickvogelerOctober 5, 2012 How do you add domains? ● https://s3-us-west-2.amazonaws.com/secure.notion-static.com/33fe8503-d070-4037-944a-1fa7b35b1ba1/bc5d1bb9748253947fc82f9b1e731697.jpg etelOctober 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-digitaloceanhttps://s3-us-west-2.amazonaws.com/secure.notion-static.com/8452a215-817c-4bd9-b050-6605fdafda28/5c8d7d3ec519bb7b0281fa8cc58a5637.png php.runnerOctober 5, 2012 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? ● https://s3-us-west-2.amazonaws.com/secure.notion-static.com/8452a215-817c-4bd9-b050-6605fdafda28/5c8d7d3ec519bb7b0281fa8cc58a5637.png php.runnerOctober 5, 2012 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 :) ● https://s3-us-west-2.amazonaws.com/secure.notion-static.com/33fe8503-d070-4037-944a-1fa7b35b1ba1/bc5d1bb9748253947fc82f9b1e731697.jpg etelOctober 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. ● https://s3-us-west-2.amazonaws.com/secure.notion-static.com/7d054a87-29c3-4a34-8b17-c1e2c705b736/aadad213677bd3b13fcf9e6a953212cd.png jtittleJanuary 4, 2013 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. ● https://s3-us-west-2.amazonaws.com/secure.notion-static.com/33fe8503-d070-4037-944a-1fa7b35b1ba1/bc5d1bb9748253947fc82f9b1e731697.jpg etelJanuary 4, 2013 Thank you! I have updated it. ● https://s3-us-west-2.amazonaws.com/secure.notion-static.com/af4ed18a-1b4d-4b49-8bdb-9864700637c6/6bfec93eaca9f23fb8d7ba79c99ef1e2.jpg deepakszoneJanuary 5, 2013 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. ● https://s3-us-west-2.amazonaws.com/secure.notion-static.com/af4ed18a-1b4d-4b49-8bdb-9864700637c6/6bfec93eaca9f23fb8d7ba79c99ef1e2.jpg deepakszoneJanuary 5, 2013 Found the answer!! Modified "server_name _;" to "server_name localhost;" on nginx configuration and restarted nginx. worked like a charm!! ● https://s3-us-west-2.amazonaws.com/secure.notion-static.com/33fe8503-d070-4037-944a-1fa7b35b1ba1/bc5d1bb9748253947fc82f9b1e731697.jpg etelJanuary 7, 2013 That's a good point. I updated the configuration to include a domain in the server_name. ● https://s3-us-west-2.amazonaws.com/secure.notion-static.com/edce3c8f-afd5-4f8e-b39f-84053e67342d/5868a5b26587795c7d2b57fabbb6d5da.jpg fikrionlineJanuary 18, 2013 IMHO the writer in not OP server but she is a professional journalist :D ● https://s3-us-west-2.amazonaws.com/secure.notion-static.com/50405f22-b6f7-45ca-8c0a-cfbc44329652/0ed8eed471387831f6e2fd406c48115d.png mark51936January 20, 2013 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. ● https://s3-us-west-2.amazonaws.com/secure.notion-static.com/f07eaf24-223e-498b-b7f8-3a5164639bcf/b0f0f55016d5e49e2d2cbced79b4b082.jpg mountainvibeJanuary 31, 2013

I've a problems with No input file specified. Here in my:

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