A couple of years back, getting a web server up and running involved setting up Apache, mod_php and MySQL. Everything was owned by “a user” and if a script needed file access, you would just chmod 777 all the files that needed to be accessed. Over the past couple of years, that landscape has shifted. Nowadays, mod_php is the slowest option you could probably go with and MySQL isn’t all hipster anymore since Oracle bought Sun. Apache is still at large, but requires more resources to accomplish what NGINX does with less.
So, let’s go set up a web server that runs NGINX, PHP-FPM and MariaDB! MariaDB is a MySQL fork created by the original author of MySQL. It’s slowly replacing MySQL as the database server on Linux distributions and I have to say, I’m a big fan as well. PHP-FPM is a process manager for PHP that makes PHP run independently from the web server, which has multiple advantages over including PHP in the web server process (which is wrong to being with).
I’ve written this guide for Ubuntu. The process should be the same on Debian or other Debian-based distributions. A CentOS version is to follow later.
NGINX and PHP-FPM
First, let’s clean out any packages that may make you go “why doesn’t it work?”:
sudo apt-get purge apache2* libapache2*
That’s Apache out the door, including any libraries. The above may or may not be necessary, depending on what kind of VPS you have and what kind of template. It’s safe to run it anyway.
Now, let’s install NGINX and PHP-FPM:
sudo apt-get install nginx php5-fpm
When this is done and you visit your server’s hostname or IP address, you should see the NGINX landing page. This means installation has succeeded.
On to the configuration. Open up /etc/nginx/sites-available/default. Look for a code block that looks like this:
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# fastcgi_split_path_info ^(.+\.php)(/.+)$;
# # NOTE: You should have “cgi.fix_pathinfo = 0;” in php.ini
#
# # With php5-cgi alone:
# fastcgi_pass 127.0.0.1:9000;
# # With php5-fpm:
# fastcgi_pass unix:/var/run/php5-fpm.sock;
# fastcgi_index index.php;
# include fastcgi_params;
#}
This snippet is from NGINX’s default virtual host configuration file and enables us to run PHP-FPM with NGINX. We’re going to change it to this:
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
# NOTE: You should have “cgi.fix_pathinfo = 0;” in php.ini# # With php5-cgi alone:
# fastcgi_pass 127.0.0.1:9000;
# With php5-fpm:
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
As you see, we’ve commented out several lines. I’m going to explain them line by line.
location ~ \.php$ {
This matches any location ending in *.php, which make sure that such requests get into the following block of code.
fastcgi_split_path_info ^(.+\.php)(/.+)$;
This matches the script’s file name and any variables that may have been added after that. It splits it up into two variables for later use by NGINX.
fastcgi_pass unix:/var/run/php5-fpm.sock;
This line passes on the request to the PHP-FPM socket, which we’ll configure in a bit. It basically sends the request there for it to be handled.
fastcgi_index index.php;
This is the name of the file NGINX should fall back to if no filename is given.
include fastcgi_params;
This includes any parameters made by the fastcgi module (like the ones we split before) and makes them available to NGINX.
That’s it NGINX-wise, let’s configure PHP-FPM. Open up /etc/php5/fpm/pool.d/www.conf. Look for the following line:
listen = 127.0.0.1:9000
And change it to:
listen = /var/run/php5-fpm.sock
This tells PHP-FPM to open a UNIX socket rather than listening on a port. This should speed things up as well.
Now, restart both PHP-FPM and NGINX:
sudo service php5-fpm restart
sudo service nginx restart
And you’re good! NGINX now works with PHP files and passes those on to PHP-FPM. If you want to test this, create a file in /usr/share/nginx/www and put this in it:
<?php
phpinfo();
If you surf to that file, it should display information about your PHP environment. Be sure to remove the file afterwards, as you probably don’t want all those details lying around in the open.
MariaDB
The final step for this tutorial is installing MariaDB. This is usually trivially easy on Ubuntu, however, at the time of writing there is a version number conflict in Ubuntu 12.04 LTS. This could have been fixed meanwhile, so I’m going to give you two commands so you have all the flexibility you need.
Anyway, let’s first install a package required for this installation to succeed:
sudo apt-get install python-software-properties
Next, add MariaDB’s repository key:
sudo apt-key adv –recv-keys –keyserver hkp://keyserver.ubuntu.com:80 0xcbcb082a1bb943db
And finally the repository:
sudo add-apt-repository ‘deb http://ftp.osuosl.org/pub/mariadb/repo/5.5/ubuntu precise main’
This repository should suit you fine. If you want something closer to home, go here: https://downloads.mariadb.org/mariadb/repositories/
Now, update APT’s caches:
sudo apt-get update
And install MariaDB and php5-mysql, so we can use MariaDB with PHP later:
sudo apt-get install mariadb-server php5-mysql
If the above results in a situation of conflict, here is how to solve it:
sudo apt-get install mariadb-server libmysqlclient18=5.5.33a+maria-1~precise mysql-common=5.5.33a+maria-1~precise php5-mysql
The conflicting packages are usually libmysqlclient18 and mysql-common, which both MariaDB and MySQL provide. In order to install MariaDB, you need the MariaDB version of these packages. With the above command, I’ve told APT to use the versions I gave for those packages. To see which versions a package has, run:
apt-cache policy packagename
It should show you a list of versions with APT’s preferred one top. For MariaDB, you need the latest version from the MariaDB repository.
For now, let’s just assume you’re not running into a conflict or you’ve solved it. During the installation, you are being asked to fill out a root password for MariaDB. Like always, pick a strong one here. Once that’s done, there’s a final step:
sudo service php5-fpm restart
Restarting PHP-FPM so the MySQL plugin gets loaded.
That’s it, you’re good to go!
What’s Next
You’re ready to install a script or an application now, but there’s a couple of things you should know. First, we’ve only configured the default virtual host. This is not bad per se, but less suitable for a multi-user environment. Also, all files go into /usr/share/nginx/www and should be owned by www-data. This ensures everything keeps running smoothly. Finally, you need to set up a database by hand in case you need one. You could use a tool like PhpMyAdmin, but be sure to properly secure it.
As this guide was an introduction to installing a NGINX, PHP-FPM and MariaDB stack, there’s a lot more to write about it. For example, the multi-user or multi-site environment I mentioned before. But also running this efficiently on a LowEndBox. Possibly even making the installation easier and configuring SSL. That’s for the future, though ;-)
Up next time: An introduction to NGINX, PHP-FPM and MariaDB on CentOS
Related Posts:
- How to Rapidly Install Java, OpenJDK & Oracle JDK on your VPS - December 14, 2015
- It’s been a great ride - December 14, 2015
- Cheap Windows VPS – $21/quarter 1GB KVM-based Windows VPS in 11 worldwide locations - November 30, 2015
MariaDB? Interesting ;)
Just wonder, who give that names? :)
Michael “Monty” Widenius – He had forked his MySQL project and started MariDB on top of that. The name was given by him after his youngest daughter, Maria :)
MySQL is same story, also. “My” is not from mine, but this is Widenius eldest daughter’s name!
It’s worth mentioning for nginx and php, users should use the Dotdeb repositories. These are often updated with the most recent nginx, php, and and MySQL (if you so choose to use it) packages (all usually updated only a day or two after the announcement of a new version) along with a few other things.
any recommendation on front end database manager, besides phpmyadmin or sqlbuddy?
Sqlyog is awesome
its not free bro – phpmyadmin is your best bet.
Is this relevant ? https://nealpoole.com/blog/2011/04/setting-up-php-fastcgi-and-nginx-dont-trust-the-tutorials-check-your-configuration/
I always set the nginx server up to defend against that. But not sure if its still an issue
He mentions the “cgi.fix_pathinfo = 0;” and the virtual server example is like WordPress’ mentioned as safe. Nevertheless it is a very nice tutorial and as long as you run nginx on the same server with your php workers you need the “try_files $uri =404;” line as well.
Again it is a general purpose tutorial and maybe one should research alone about his or her application optimal/secure nginx virtual server configuration.
Cheers!
Panagiotis.
Pleasing you should think of sontmhieg like that
If I won, I would use the $50 towards the Incra Jig Miter Gauge 1000HD to replace my OEM gauge that came with my table saw. This would allow me to make accurate cuts on the old TS.
Hallelujah! I needed this-you’re my savior.
You’re the one with the brains here. I’m wanctihg for your posts.
You’re on top of the game. Thanks for sharing.
Why not using php5-mysqlnd rather than using php5-mysql? :D
I believe that’s just for OS X, not sure though.
I’m using it on both Debian and CentOS and it’s working great. :D
Why you use php5-mysqlnd? Less memory?
Because when i’m using php-mysql or php5-mysql with MariaDB there’s always dependency error. So i try to search proper solution and somehow i found php-mysqlnd. Well, it’s not throwing any error at all and everything working fine.
Nice didn’t know of MariaDB till now thanks.
There’s also Percona, which is another variation of MySQL.
installed MariaDB last night and see they have a nice cluster feature version. Ill check Percona out after something with speed for applications.
Thanks for opening my eyes… if anyone else is interested here is a good read on mysql, MariaDB & Percona…
http://techportal.inviqa.com/2012/03/15/mysql-alternatives-to-mysql/
Correct.
MariaDB includes the modifications Percona has done.
thanks , waiting for centos tutorial
I can’t find /etc/php5/fpm/conf.d/www.conf It is not there.
For Debian the location is “/etc/php5/fpm/pool.d/www.conf”.
Yeah, it should have been that. The one path that wasn’t in my notes was wrong ;-)
Thanks! Cant wait for the centos version.
could you possibly write also about nginx + Ruby on Rails? Thanks in advance :)
Why do you recommend that the files belong to www-data? They only should be readable by www-data usually, not writable. Therefore they shouldn’t belong to the same user that the HTTP server is running under.
convention, mostly, I’d assume
WordPress needs to be able to read and write to files. On initial install, it need access to wpconfig, then for uploads and also depending on the plugin ur using.. But, most people fine tune the file ownership as time goes on. Security is an moving mark .
Great tutorial – thanks.
For MariaDB installation on Ubuntu 14.04 LTS : https://downloads.mariadb.org/mariadb/repositories/#mirror=kaist&distro=Ubuntu&version=10.0&distro_release=trusty