This page describes how the automation toolkit was developed and how the Bash scripts are structured. The project uses several scripts that work together to deploy a complete WordPress server environment.
mkdir automation_tool_kit cd automation_tool_kit mkdir scripts mkdir monitor
sudo ./deploy.sh
The deployment script acts as the central controller that runs all other scripts in the correct order.
sudo apt update -y sudo apt install apache2 mariadb-server php php-mysql
CREATE DATABASE wordpress; CREATE USER 'wpuser'@'localhost'; GRANT ALL PRIVILEGES ON wordpress.* TO 'wpuser'@'localhost';
uptime free -h df -h
Writing automation scripts
Running deployment on server