Install WordPress on LAMP

After installing LAMP on your VPS, you can now install WordPress to build your own website. Setup MySQL First, create database and user for wordpress. Login to MySQL. sudo mysql -u root -p Create a new database. CREATE DATABASE wordpress DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci; Create a new user. Replace wpuser and passwd with […]

Read More