There is no doubt that WordPress is the popular and most widely used Content Management System for websites and blogs. It is free, open source CMSbased on php and mysql. As of April 2016, more than 60 million websites are powered by WordPress, and sure, the list will go on every year.We are also using WordPress CMS right now for our blog OSTechNix. WordPress CMS is created by Matt Mullenweg and Mike Little ,and the first version of wordpress was released on May 27, 2003 . WordPress is released under GPLv2 license, so anyone can download, modify and use it.
Install WordPress 4.5 in Ubuntu 16.04 LTSIn this tutorial, we will be discussing how to install WordPress 4.5 in Ubuntu 16.04 LTS server edition with LAMP stack. As of writing this guide, the latest stable version was 4.5 .
Setup LAMP stackSince WordPress is web-based CMS, we need to have a working LAMP (Apache, MySQL/MariaDB, PHP) stack in the Ubuntu server. To install LAMP stack, refer the following guide.
Install Apache, MariaDB, PHP (LAMP stack) in Ubuntu 16.04 Create database for WordPressAfter installing LAMP stack, we need to create a database and database user for WordPress. For the purpose of this tutorial, I am going to create a database called “wpdb” and database user called “wpuser” with password “ubuntu” .I recommend you to use any strong password for the database user.
To do so, log in to MariaDB (Working with MYSQL and MariaDB is same) as root user:
mysql -u root -pRun the following commands shown in black letters one by one to create database and database user.
Sample output: Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 52 Server version: 10.0.25-MariaDB-0ubuntu0.16.04.1 Ubuntu 16.04 Copyright (c) 2000, 2016, Oracle, MariaDB Corporation Ab and others. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. MariaDB [(none)]> CREATE DATABASE wpdb; Query OK, 1 row affected (0.00 sec) MariaDB [(none)]> CREATE USER wpuser@localhost IDENTIFIED BY 'ubuntu'; Query OK, 0 rows affected (0.00 sec) MariaDB [(none)]> GRANT ALL PRIVILEGES ON wpdb.* TO wpuser@localhost; Query OK, 0 rows affected (0.00 sec) MariaDB [(none)]> FLUSH PRIVILEGES; Query OK, 0 rows affected (0.00 sec) MariaDB [(none)]> exit Bye
Restart mysql and Apache services:
sudo systemctl restart mysql sudo systemctl restart apache2 Download and Install WordPress 4.5We have completed the necessary prerequisites. Now, it is time to deploy wordpress in our Ubuntu server.
Download the latest WordPress version using the following commands:
cd /tmp wget http://wordpress.org/latest.zip
Extract the downloaded file as shown below:
sudo apt-get install unzip unzip latest.zipThe above command will extract the zip file and saves the contents in a directory called “wordpress” in the /tmp directory.
Move the extracted folder (i.e wordpress) to the web root folder.
sudo mv wordpress/ /var/www/html/Then, we need to set appropriate permissions to the following directories.
sudo chown -R www-data:www-data /var/www/html/wordpress sudo chmod -R 755 /var/www/html/wordpress
Create a directory called ‘uploads’ within the ‘wordpress’ folder, and set the appropriate permissions to that directory as shown below.
sudo mkdir -p /var/www/html/wordpress/wp-content/uploads sudo chown -R www-data:www-data /var/www/html/wordpress/wp-content/uploads
Now, open up the web browser of your choice and start the WordPress web installer by navigating to the URL: http://IP-Address/wordpress/ or http://domain-name/wordpress/ .
You will be pleased with the following screen. Select your preferred language and click Continue .

Install WordPress 4.5
Next, we need the following details.
Database name Database username Database password Database host Table prefix (if you want to run more than one WordPress in a single database)Once you have these details, click Let’s go , else go back the section ‘Create Database for wordpress’ , and create the required database details.

Enter the correct database connection details which we have created earlier in the respective boxes below.

If you have entered valid database details, you should see the following screen. Click ‘Run the install’ button.

Next, enter your blog details, such as blog name, username, and password etc.

Congratulations! WordPress has been successfully installed in your Ubuntu server. Click Login to continue.

Enter your wordpress username and password.

This is how my Worpdress site dashboard looks like.

Post installation
Here is some basic things to do after installing WordPress.
Fix upload problems in WordPressWhen you try to export contents of your existing wordpress site, you might encounter with the following errors.
Sorry, there has been an error.
File is empty. Please upload something more substantial. This error could also be caused by uploads being disabled in your php.ini or by post_max_size being defined as smaller than upload_max_filesize in php.ini.

To fix this, edit php.ini file:
sudo nano /etc/php/7.0/apache2/php.iniFind the following two values and set it to sufficient size, for example 50 MB.
[...] post_max_size = 50M [...] upload_max_filesize = 50M [...]Save and close the file.
Restart Apache service to take effect the changes.
sudo systemctl restart apache2 Fix Permalinks errorWordPress offers you different cusotm URL structure. By default, the default URL of your posts will look like below.
http://site-name/?p=123To change it to something human-readable format, you must do some tweaks in the Apache configuration file.
To do so, edit /etc/apache2/sites-available/000-default.conf file:
sudo nano /etc/apache2/sites-available/000-default.con