Guides: Web server: Part 2
Installing Web/DB/PHP
sudo apt update
sudo apt install apache2 php php-mysql mysql-server
sudo mysql -u root
Then, inside the mysql client, we created the database and created a user called ‘coding_username’, with the password ‘cheese’ and gave it access to the newly created ‘coding’ database:
CREATE DATABASE coding;
CREATE USER coding_username IDENTIFIED BY 'cheese';
GRANT ALL privileges ON coding.* TO coding_username;
quit;
Then we downloaded the Adminer software (
https://www.adminer.org/) using the command line downloader on the Amazon instance (i.e. do this in putty on your server, don't download it to your laptop):
wget https://github.com/vrana/adminer/releases/download/v4.8.1/adminer-4.8.1.php
sudo cp adminer-4.8.1.php /var/www/html/adminer.php