In this article, we will focus on how to install WordPress on Ubuntu 18.04. WordPress is a free and open-source content management platform based on PHP and MySQL. It’s the world’s leading blogging and content management system with a market share of over 60%, dwarfing its rivals such as Joomla and Drupal. WordPress was first released on May 27th, 2003 and powers over 60 million websites to date! So powerful and popular it has become that some major brands/companies have hosted their sites on the platform. These include Sony Music, Katy Perry, New York Post, and TED.
So why is WordPress this popular? Let’s briefly look into some of the factors that have led to the immense success of the platform.
WordPress comes with a simple, intuitive and easy to use dashboard. The dashboard doesn’t require any knowledge in web programming languages like PHP, HTML5, and CSS3 and you can build a website with just a few clicks on a button. In addition, there are free templates, widgets, and plugins that come with the platform to help you get started with your blog or website.
WordPress drastically saves you the agony of having to pay developer tonnes of cash to develop your website. All you have to do is to get a free WordPress theme or purchase one and install it. Once installed, you have the freedom to deploy whatever features that suit you and customize a myriad of features without running much code. What’s more, is that it takes a much shorter time to design your site that coding from scratch.
WordPress platform is inherently responsive and you do not have to stay awake worrying about your sites being able to fit across multiple devices. This benefit also adds to your site being ranked higher in Google’s SEO score!
WordPress is built using well-structured, clean and consistent code. This makes your blog/site easily indexable by Google and other search engines thereby making your site rank higher. In addition, you can decide which pages rank higher or alternatively use SEO plugins like the popular Yoast plugin which enhances your site’s ranking on Google.
It’s very easy to install WordPress on Ubuntu or any other operating system. There are so many open-source scripts to even automate this process. Many hosting companies provide a one-click install feature for WordPress to get you started in no time.
Before we begin, let’s update and upgrade the system. Login as the root user to your system and update the system to update the repositories.
apt update && apt upgrade
Output Next, we are going to install the LAMP stack for WordPress to function. LAMP is short for Linux Apache MySQL and PHP.
Let’s jump right in and install Apache first. To do this, execute the following command.
apt install apache2
Output To confirm that Apache is installed on your system, execute the following command.
systemctl status apache2
Output To verify further, open your browser and go to your server’s IP address.
https://ip-address
Output
Next, we are going to install the MariaDB database engine to hold our Wordpress files. MariaDB is an open-source fork of MySQL and most of the hosting companies use it instead of MySQL.
apt install mariadb-server mariadb-client
Output Let’s now secure our MariaDB database engine and disallow remote root login.
$ mysql_secure_installation
The first step will prompt you to change the root password to login to the database. You can opt to change it or skip if you are convinced that you have a strong password. To skip changing type n. For safety’s sake, you will be prompted to remove anonymous users. Type Y. Next, disallow remote root login to prevent hackers from accessing your database. However, for testing purposes, you may want to allow log in remotely if you are configuring a virtual server Next, remove the test database. Finally, reload the database to effect the changes.
Lastly, we will install PHP as the last component of the LAMP stack.
apt install php php-mysql
Output To confirm that PHP is installed , created a info.php
file at /var/www/html/
path
vim /var/www/html/info.php
Append the following lines:
<?php
phpinfo();
?>
Save and Exit. Open your browser and append /info.php
to the server’s URL.
https://ip-address/info.php
Output
Now it’s time to log in to our MariaDB database as root and create a database for accommodating our WordPress data.
$ mysql -u root -p
Output Create a database for our WordPress installation.
CREATE DATABASE wordpress_db;
Output Next, create a database user for our WordPress setup.
CREATE USER 'wp_user'@'localhost' IDENTIFIED BY 'password';
Output Grant privileges to the user Next, grant the user permissions to access the database
GRANT ALL ON wordpress_db.* TO 'wp_user'@'localhost' IDENTIFIED BY 'password';
Output Great, now you can exit the database.
FLUSH PRIVILEGES;
Exit;
Go to your temp directory and download the latest WordPress File
cd /tmp && wget https://wordpress.org/latest.tar.gz
Output Next, Uncompress the tarball which will generate a folder called “wordpress”.
tar -xvf latest.tar.gz
Output Copy the wordpress folder to /var/www/html/
path.
cp -R wordpress /var/www/html/
Run the command below to change ownership of ‘wordpress’ directory.
chown -R www-data:www-data /var/www/html/wordpress/
change File permissions of the WordPress folder.
chmod -R 755 /var/www/html/wordpress/
Create ‘uploads’ directory.
$ mkdir /var/www/html/wordpress/wp-content/uploads
Finally, change permissions of ‘uploads’ directory.
chown -R www-data:www-data /var/www/html/wordpress/wp-content/uploads/
Open your browser and go to the server’s URL. In my case it’s
https://server-ip/wordpress
You’ll be presented with a WordPress wizard and a list of credentials required to successfully set it up. Fill out the form as shown with the credentials specified when creating the WordPress database in the MariaDB database. Leave out the database host and table prefix and Hit ‘Submit’ button. If all the details are correct, you will be given the green light to proceed. Run the installation. Fill out the additional details required such as site title, Username, and Password and save them somewhere safe lest you forget. Ensure to use a strong password. Scroll down and Hit ‘Install WordPress’. If all went well, then you will get a ‘Success’ notification as shown.
Click on the ‘Login’ button to get to access the Login page of your fresh WordPress installation. Provide your login credentials and hit ‘Login’. Voila! there goes the WordPress dashboard that you can use to create your first blog or website! Congratulations for having come this far. You can now proceed to discover the various features, plugins, and themes and proceed setting up your first blog/website!
Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.
the best tutor ever thanks
- muhammad afnan afif
Uh hello. I’ve just finished installing WordPress on my webserver. Everything worked fine for some minutes, then, out of the nowhere, it tells me “Error establishing a database connection”. I have done everything exactly like you (except setting up Apache2, I already did that way before). Where am I/did go wrong? Could anyone give me a solution/explanation if possible? However, this is a great tutorial. If you would include some troubleshooting with (probably) common errors like this, it would be even way better! Thanks in advance, Saintly.
- Saintly
I just finished installing Apache but now I’m trying to go to my server IP address on my bowser but I keep getting the “Unable to connect” error. I tried accessing to other websites and they work fine but my server is not giving me the same result. Please help me.
- NUTHORDE
The best tutorial which I have ever seen.
- MAteusz
This article is really good, thanks for the same. I ran into few errors will update soon
- Anurag Malti Chaurasia
change apache2 conf file to change the path from HTTP://ip/wordpress to HTTP://ip sudo nano /etc/apache2/sites-available/anyone.conf ServerAdmin admin@example.com DocumentRoot /home/user/www/wordpress sudo service apache2 restart
- CHANDRAKANT SANGALE
great man, great work انت راجل عظيم فشخ
- ah007
The best internet tutorial
- Luis
Hello thanks for this guide. please i am a really bite confused, do you i have to follow all this process if i want to create a new wp on my server with my subdomain? if yes how can i extract the wp files to the subdomain folder someone helped me set on my server but now i want to learn how to do it on my own
- Miracle
Hello, I followed all the steps but my server is on a virtual box as a virtual server. When I type my virtual servers IP adress to access to Wordpress, it doesnt seem to work. What Ip adress am I supposed to use to access wordpress from my virtual machine
- Emre Yildirim