AMP Installation

Overview

Prerequisites

Allocate Database

DROP DATABASE wordpress_database;
CREATE DATABASE wordpress_database DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;
DROP USER wordpress_username@localhost;
FLUSH PRIVILEGES;
CREATE USER 'wordpress_username'@'localhost' IDENTIFIED BY 'wordpress_password';
GRANT ALL PRIVILEGES ON * . * TO 'wordpress_username'@'localhost';

Bootstrapping a Project

Serving the Web Application