Make Money Online WORDPRESS How to Install LAMP Stack +WORDPRESS in Ubuntu Server 16.04

How to Install LAMP Stack +WORDPRESS in Ubuntu Server 16.04

How to Install LAMP Stack +WORDPRESS in Ubuntu Server 16.04 post thumbnail image



In this Video, Step by Step Demonstration is being done regarding Installing LAMP Server (Linux/Apache2/Mysql-Server 5.7+Php 7.0) along with WordPress in Ubuntu 16.04

Official Website: www.wordpress.com

Steps to Install WordPress in Ubuntu 16.04

Step 1: Update the System
#apt-get update

Step 2: Install LAMP Server
#apt-get install lamp-server^

Step 3: WordPress Database Initialization
#mysql -u root -p

Commands
CREATE DATABASE wordpressdb;
CREATE USER wordpressuser@localhost IDENTIFIED BY ‘wordpresspassword’;
GRANT ALL PRIVILEGES ON wordpressdb.* TO wordpressuser@localhost;
FLUSH PRIVILEGES;
exit

Step 4: Installing WordPress
#cd /tmp
#wget
#unzip -q latest.zip -d /var/www/html/
#chown -R www-data:www-data /var/www/html/wordpress
#chmod -R 755 /var/www/html/wordpress
#mkdir -p /var/www/html/wordpress/wp-content/uploads
#chown -R www-data:www-data /var/www/html/wordpress/wp-content/uploads

Open web browser

Related Post