6

Install and configure WordPress in Ubuntu

 2 years ago
source link: https://www.laravelcode.com/post/install-and-configure-wordpress-in-ubuntu
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
neoserver,ios ssh client

Install and configure WordPress in Ubuntu

  298 views

  6 months ago

Wordpress

Wordpress is the most popular open-source CMS framework for website building. Wordpress runs on the top of the PHP language and uses MySQL or MariaDB as database. Wordpress is easy to run blogging or cart websites and it does not need costly server. Also it does not need heavy programming knowledge to run Wordpress project and it is open-source CMS web framework. Thats is why Wordpress is most popular in running websites.

There are many ways to install and run Wordpress project. In this article, We will download Wordpress project from the official site and configure as this is the easy way to install and configure ubuntu.

Prerequisites

You need to be logged in as non-root user with sudo permission. You should already installed LAMP stack installed in your server.

Download and install Wordpress

After installing LAMP stack, first of all, download latest Wordpress project compressed tar file. For that, go to the apache2 root folder.

cd /var/www/html

Download latest version of Wordpress project compressed file.

wget -c http://wordpress.org/latest.tar.gz

Extract project folder, Now your project is ready to run.

tar -xzvf latest.tar.gz

Give necessary permission for project

sudo chown -R www-data:www-data /var/www/html/wordpress

Create MySQL database

You have downloaded Wordpress project, now you will need to create and setup database. So first, login to MySQL command line shell.

mysql -u root -p

Type password and you will redirect to MySQL command line shell. Create database using bellow command.

CREATE DATABASE wordpress_database;

Create new user and grant permission to database

GRANT ALL PRIVILEGES ON wordpress_database.* TO 'wordpress_username_here'@'localhost' IDENTIFIED BY 'wordpress_password';

And flush privileges

FLUSH PRIVILEGES;

Last exit MySQL command line.

EXIT;

Setup and run Wordpress project

Now you have also created database. In the last, setup Wordpress project and run in the browser. First go to the project root directory and copy or rename wp-config-sample.php file to wp-config.php file.

sudo cp wp-config-sample.php wp-config.php

Then open wp-config.php file and change database credentials to yours one.

/** The name of the database for WordPress */
define( 'DB_NAME', 'wordpress_database' );

/** MySQL database username */
define( 'DB_USER', 'wordpress_username_here' );

/** MySQL database password */
define( 'DB_PASSWORD', 'wordpress_password' );

And run your website address in browser and you will get bellow screen Wordpress setup wizard. Just run through setup wizard. First select language.

how-to-install-and-configure-wordpress-in-ubuntu-select-language.png
 

Input admin details.

django_admin_Dashboard_1.png

Thats it. Your Wordpress website is configured and now you can login to your Wordpress admin panel and setup website.

how-to-install-and-configure-wordpress-in-ubuntu-admin-create-screen.png

Conclusion

This way, you can simply run Wordpress website. I hope this will help you to setup new Wordpress website.

Author : Harsukh Makwana
Harsukh Makwana

Hi, My name is Harsukh Makwana. i have been work with many programming language like php, python, javascript, node, react, anguler, etc.. since last 5 year. if you have any issue or want me hire then contact me on [email protected]


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK