Disclaimer: We may earn a commission if you make any purchase by clicking our links. Please see our detailed guide here.

Follow us on:

Google News
Whatsapp

Your 4 Step guide on deploying WordPress on a VPS

Guest Author
Guest Author
Techgenyz guest authors are versatile writers with the passion for storytelling. The come from diversified backgrounds and bring a unique perspective to their work. Their writing is known for its depth, creativity, and ability to captivate readers.

Join the Opinion Leaders Network

Join the Opinion Leaders Network today and become part of a vibrant community of change-makers. Together, we can create a brighter future by shaping opinions, driving conversations, and transforming ideas into reality.

WordPress is easily one of the most popular and versatile content management systems in existence today, and for good reasons too. It can be used to create all types of websites and blogs and it also provides flexibility in terms of customization.

Additionally, it is a free and open-source application which means that anyone can make use of it with little to no restrictions. 

Despite being a free platform for creating a website or blog, in most cases, you will need web hosting, as the version from WordPress.org is a self-hosted content management system. Most beginners opt for shared hosting which is great for newly created websites with low traffic. Shared hosting means that your website shares the same pool of resources as other sites on the same server. This lets hosting providers drive costs down dramatically.

The downside is that you will face performance issues as your website grows and generates more traffic. You will notice that your website is unavoidably slow resulting in poor user experience. When this happens, then it is time to upgrade to a better web hosting service. 

Virtual Private Service or VPS hosting is often the next logical step for most website owners. It offers the users full control of their websites and is quite easy to manage if you got some CLI experience. Most VPS hosting services provide excellent support teams that give 24-hours support services to the user in case they encounter issues. But it is worth mentioning, that you should definitely access your technical skills before purchasing a VPS hosting solution.

There is a misconception that VPS hosting will tear through your wallet, but luckily that is not true, as there are cheap VPS hosting options out there, that have all the must-have features.

wordpress software

I will take you through a step by step process of installing WordPress on a Linux-based VPS. For this, you’ll need to gain access to your virtual private server through SSH. Pick your favorite SSH client, ours is PuTTY, install it, and you’re ready to go.

Installing WordPress on VPS

Now that you have your SSH client, and VPS credentials, let’s deploy WordPress on a VPS running CentOS7.

Step 1 – Download an SSH client

After you open PuTTY, you’ll need to type in your server’s IP address and port and select the SSH connection type.

After you finish typing, click Open.

Type root in the CLI that appears and then enter your VPS password. If this is done correctly, you will see your VPS name displayed on the screen.

Step 2 – Install a LAMP stack

Install an HTTP server, a database, and PHP using the command:

sudo yum install httpd mariadb mariadb-server php php-common php-mysql php-gd php-xml php-mbstring php-mcrypt php-xmlrpc unzip wget -y

This will download all necessary files and once it is done. This is called a LAMP stack – a software bundle for site and application management.

In this case, the LAMP stack is made up of:

  • Linux – the operating system that the server is running.
  • Apache – our chosen web server.
  • MariaDB – a database system.
  • PHP – the programming language that we will use.

Input the next commands to ensure the server initializes and boots up the applications, and keeps them running at all times.

sudo systemctl start httpd

sudo systemctl start mariadb

sudo systemctl enable httpd

sudo systemctl enable mariadb

Step 3 – Configure the database

To secure your database, enter the command (for this example, I am using MariaDB)

sudo mysql_secure_installation  

You will be prompted to enter the root user password. Leave it blank and tap the enter key so that you can set a new root password. Tap the Y key for all other options.

Log into your MariaDB account using the command:

mysql -u root –p

Then enter the root user password. Once you are in, run the next four commands in sequence and remember to replace the default username and password.

CREATE DATABASE wordpress;

GRANT ALL PRIVILEGES on wordpress.* to ‘user’@’localhost’ identified by ‘password’;

FLUSH PRIVILEGES;

exit

Deploying WordPress

Now your database is set. We can proceed with installing WordPress.

Step 4 – Install WordPress

To deploy WordPress, enter and run the commands below in sequence. To download the latest version of WordPress and extract it to the root directory, enter the following commands:

wget https://wordpress.org/latest.tar.gz

tar -xzvf latest.tar.gz

sudo cp -avr wordpress/* /var/www/html/

Now you have to create an upload folder and assign the right permissions to it, so WordPress doesn’t run into privilege issues. Use the next command lines:

sudo mkdir /var/www/html/wp-content/uploads

sudo chown -R apache:apache /var/www/html/

sudo chmod -R 755 /var/www/html/

Next, you have to rename your WordPress wp-config-sample.php file with these commands:

cd /var/www/html/

sudo mv wp-config-sample.php wp-config.php

sudo nano wp-config.php

The last command will open the wp-config.php file with the nano editor. Here you will have to replace the following fields with the data you entered in Step 3 when you configured your database. This will include the database name, assigned user, and the password:

define(‘DB_NAME’, ‘wordpress’);

define(‘DB_USER’, ‘user’);

define(‘DB_PASSWORD’, ‘password’);

After updating the required fields press CTRL+O to save the changes, and CTRL+X to exit the editor.

Finally, configure your VPS to allow both HTTP and HTTPS connections using the commands:

sudo firewall-cmd –permanent –zone=public –add-service=http

sudo firewall-cmd –permanent –zone=public –add-service=https

sudo firewall-cmd –reload

After running these last commands, you will be able to access the WordPress Installer by opening your preferred browser and entering your VPS’ IP address like so – http://yourVPSIP.

There you will have to complete the standard WordPress setup, which will set up the site and create the administrator account. Make sure to do this quickly, as anyone that has your VPS IP can access the installer before you. While this is unlikely, it’s always better to be safe than sorry.

Conclusion

Congratulations you have successfully deployed WordPress on a virtual private server. Hopefully, this will put an end to any issues you may have been having with performance on your website. Good luck!

Join 10,000+ Fellow Readers

Get Techgenyz’s roundup delivered to your inbox curated with the most important for you that keeps you updated about the future tech, mobile, space, gaming, business and more.

Recomended

Partner With Us

Digital advertising offers a way for your business to reach out and make much-needed connections with your audience in a meaningful way. Advertising on Techgenyz will help you build brand awareness, increase website traffic, generate qualified leads, and grow your business.

Power Your Business

Solutions you need to super charge your business and drive growth

More from this topic