2013-11-21

WordPress as a CMS is usually installed over Apache servers for most websites. However, If yours’ is one of the websites that generates a lot of traffic, chances are that an Apache server would go dead on you during peak traffic hours. This is mostly because Apache processes data based on processes rather than the latest thread based processing.

A good way to prevent this from happening is to use Nginx as the Web Server with PHP-FPM (PHP – Fast Process Manager) and MySQL. This will also ensure that your website is ready for high traffic in the future.

 

In this post, we will show you how to install WordPress on Nginx with PHP-FPM and MySQL.

 



We have done our best to keep it really simple, all you need to do is follow the steps given below :

1. Switch to Root Sudo

You must switch to root using the command given below since we are going run most of the commands as root.

2. Installing Packages

Once you have switched to root, you can now directly go ahead and install all the packages which we’ll need to get things running up. We’ll install PHP5-FPM, Nginx, MySQL-server and PHP5-MySQL in one single command as given below.

If you aren’t getting it, check the screenshot given below to understand what’s going on in the terminal. Currently we have entered the second command in terminal and we’re about to press enter.



Hit enter and the command will be processed by the terminal.

3. Setting up MySQL Password

You will be asked to enter the MySQL password. For now We’ll just enter the password as “pass”.

Note – Always use a complex password. We’re using password as “pass” to keep things as simple as possible.

Below is a screenshot of the terminal asking for MySQL password.



You’ll be asked to enter the password twice. And once you do that the process will continue to install the selected packages.

4. Starting Nginx Service

When the installation is done, we’ll get the control back in terminal. Now we’ll go ahead and start Nginx service. To do that, type the command given below -

This will start the Nginx service on Ubuntu. Below is a screenshot of terminal while activating the Nginx service.

Now we’ll check if Nginx is really running or not. Open the web browser and browse to localhost. This should take you to Nginx default HTML page as shown below -

5.Creating the Database

We log into MySQL to create a database for our WordPress installation. We can log into MySQL by typing in the command given below -

Once we enter that command, we’ll be asked to enter the MySQL password which we have set previously. So just enter the password. (Note – It won’t be displayed as you enter it.

After logging into MySQL, you can create the database using the following command -

We just name the database as blog and then exit MySQL using the command -

6. Downloading and Unzipping WordPress

Now its time for WordPress to come into picture. We’ll first switch over to the root directory where localhost points to.

Once we do that, we’ll download the WordPress package.

This will download WordPress and you can see the download progress in the terminal as shown below -

Once download is complete, just type in the following command to unzip the file.

 

The terminal fills up with different file extraction details. Once files are unzipped just execute few more commands given below -

 

Note:  Make sure to enter the above commands as they are mentioned above, because during our testing, something similar to the below image took place in our office with just a little modification we happened to do with the above code

Image Credit : BryonBayBlog.com.au

Explaining the above commands, In short: we have removed the latest.zip after extracting it. Then moved the files from WordPress folder to current directory. After moving the files, we have deleted WordPress directory and also we have deleted the useless default index.html page of Nginx.

This leaves us with fresh WordPress files within the localhost root directory.

7. Configuring Nginx

Type in the command given below to edit the default configuration file of Nginx.

This will open up the default configuration file. Now you’ll have to do some magical stuff here. Find the line which says -

And replace it with the line given below. This will help Nginx to work with PHP files.

Then find the following part -

And make the following changes within that part of the file. This will help us to run Nginx with php5-fpm. We are using UNIX sockets instead of TCP ports to pass data between Nginx and PHP.

Press Control + X and follow the instructions to save the changes to the file.

8. Change Ownership and Reload Nginx

We now change the ownership of HTML directory to www-data and reload Nginx. Setting the permissions to 777 is highly discouraged. You get errors in either Apache or your editor regarding permissions because Nginx runs under a different user (www-data) than you.

 

9. Installing WordPress

Finally we can start to install WordPress. Just visit localhost in your web browser to start the installation.  – You can ignore this if you are already familiar with the famous 5 minute installation.

Visit localhost in Google Chrome or any other Web Browser

WordPress will ask you to create Configuration File.

Click on Create a Configuration File button

Click lets go.

Enter database name as blog

Enter username as root

Enter password as pass

Keep host as localhost and table prefix as wp_

Hit submit button

Click run the install button

Enter Site Title, Admin username and pass, Admin email

Click Install WordPress button

And we’re good to go.

We’ve successfully installed WordPress on Ubuntu using Nginx, PHP-FPM, MySQL

We want to know if you liked this post, and in our next post, maybe we would show how to optimize this even further by using Varnish Cache and Amazon S3.

The post Installing WordPress on Nginx with PHP-FPM and MySQL using Ubuntu appeared first on WisdmLabs.

Show more