Tutorial

How to install WordPress on Ubuntu

Published on August 3, 2022
author

Pankaj

How to install WordPress on Ubuntu

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.

Ease of Use

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.

Cost effectiveness

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 sites are Responsive

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 SEO ready

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.

Easy to install and upgrade

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.

Install WordPress on Ubuntu

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 update and upgrade the ubuntu system Next, we are going to install the LAMP stack for WordPress to function. LAMP is short for Linux Apache MySQL and PHP.

Step 1: Install Apache

Let’s jump right in and install Apache first. To do this, execute the following command.

apt install apache2

Output Install Apache2 To confirm that Apache is installed on your system, execute the following command.

systemctl status apache2

Output how to check apache2 status To verify further, open your browser and go to your server’s IP address.

https://ip-address

Output Apache Web Server Default Page

Step 2: Install MySQL

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 Install MySQL Mariadb Server Mariadb Client 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. Change The Root Password For safety’s sake, you will be prompted to remove anonymous users. Type Y. Remove Anonymous Users 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 Disallow Root Login Remotely Next, remove the test database. Remove Test Database Finally, reload the database to effect the changes. Reload Privilege Table

Step 3: Install PHP

Lastly, we will install PHP as the last component of the LAMP stack.

apt install php php-mysql

Output Install Php 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 Info Php Webpage

Step 4: Create WordPress Database

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 Mysql Root Login Create a database for our WordPress installation.

CREATE DATABASE wordpress_db;

Output Create Wordpress Database Next, create a database user for our WordPress setup.

CREATE USER 'wp_user'@'localhost' IDENTIFIED BY 'password';

Output Create User For Wordpress Database 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 Grant Privileges To Wp User On Wordpress Database Great, now you can exit the database.

FLUSH PRIVILEGES;

Exit;

Step 5: Install WordPress CMS

Go to your temp directory and download the latest WordPress File

cd /tmp && wget https://wordpress.org/latest.tar.gz

Output Download Wordpress Next, Uncompress the tarball which will generate a folder called “wordpress”.

tar -xvf latest.tar.gz

Output Uncompress Wordpress Tarball 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. install wordpress on ubuntu 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. install wordpress on ubuntu If all the details are correct, you will be given the green light to proceed. Run the installation. Alright Sparky 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. Welcome More Information Needed Scroll down and Hit ‘Install WordPress’. If all went well, then you will get a ‘Success’ notification as shown.

Success installing WordPress
Sucess

Click on the ‘Login’ button to get to access the Login page of your fresh WordPress installation. Log In To Wordpress Provide your login credentials and hit ‘Login’. wordpress dashboard 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.

Learn more about our products

About the authors
Default avatar
Pankaj

author

Still looking for an answer?

Ask a questionSearch for more help

Was this helpful?
 
JournalDev
DigitalOcean Employee
DigitalOcean Employee badge
May 9, 2019

Great tutorial thank you. There is one tiny mistake though: “apt install mariabd-server mariadb-client” should be “mariadb-server” :)

- Numbian

    JournalDev
    DigitalOcean Employee
    DigitalOcean Employee badge
    October 29, 2019

    Hello. I’m stuck in the https://server-ip/wordpress part. I put my IP address but nothing happens, it’s just loading.

    - Sarkhan

      JournalDev
      DigitalOcean Employee
      DigitalOcean Employee badge
      November 11, 2019

      Hi, OS-Ubuntu 18.04 desktop Just followed your tutorial to install WordPress. It work without problem until coming to; --> [Submit] Warning; Can’t select database We were able to connect to the database server (which means your username and password is okay) but not able to select the wordpress database. … … Also having tried creating wp-config.php manually but without result. Please advise how to fix the problem. Thanks Please advise how to fix the problem. Thanks

      - Stephen Liu

        JournalDev
        DigitalOcean Employee
        DigitalOcean Employee badge
        December 13, 2019

        Hi Pankaj, Thank you for the nice post, please correct the first command to apt-get update && apt-get upgrade

        - Tuhin Debnath

          JournalDev
          DigitalOcean Employee
          DigitalOcean Employee badge
          December 19, 2019

          Please add how to add desired url to instead of port number

          - Manas

            JournalDev
            DigitalOcean Employee
            DigitalOcean Employee badge
            January 31, 2020

            Great article. You are missing one small step though: after php installation, apache2 service needs to be restarted for the php to kick in.

            - xpil

              JournalDev
              DigitalOcean Employee
              DigitalOcean Employee badge
              February 27, 2020

              Great document, thanks mate

              - Ahmet

                JournalDev
                DigitalOcean Employee
                DigitalOcean Employee badge
                February 28, 2020

                Also had to add a2enmod proxy_fcgi setenvif a2enconf php7.0-fpm service apache2 restart If Apache is showing the html code instead of the php information page.

                - Alex de la Rosa

                  JournalDev
                  DigitalOcean Employee
                  DigitalOcean Employee badge
                  March 1, 2020

                  I am trying to install any plugin or theme but it always asks for FTP credentials, no matter what I do it always says it failed to create the directory, but when I check the Site Health all the directories are writable. Where could I have gone wrong? Should I reinstall the entire server and start over? Thanks, this was really helpful to get Wordpress up and running quickly!

                  - Nathan

                    JournalDev
                    DigitalOcean Employee
                    DigitalOcean Employee badge
                    March 3, 2020

                    in your chown you did not do ‘-R’, as a result, I can’t upload anything to WP. I added chown -R www-data:www-data /var/www/html/wordpress. Now it works handsomely TQ

                    - Edwin Masripan

                      Try DigitalOcean for free

                      Click below to sign up and get $200 of credit to try our products over 60 days!

                      Sign up

                      Join the Tech Talk
                      Success! Thank you! Please check your email for further details.

                      Please complete your information!

                      Become a contributor for community

                      Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

                      DigitalOcean Documentation

                      Full documentation for every DigitalOcean product.

                      Resources for startups and SMBs

                      The Wave has everything you need to know about building a business, from raising funding to marketing your product.

                      Get our newsletter

                      Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.

                      New accounts only. By submitting your email you agree to our Privacy Policy

                      The developer cloud

                      Scale up as you grow — whether you're running one virtual machine or ten thousand.

                      Get started for free

                      Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

                      *This promotional offer applies to new accounts only.