This is a script that will help you to install the latest wordpress on a linux machine / server.
- Clone this Repository
git clone https://github.com/officialasit/wp-installation-sript.git
cd wp-installation-sript
- Run the Script
./install.sh
- Setup the Database
sudo mysql -uroot
> CREATE DATABASE wordpress;
> grant all privileges on wordpress.* TO 'wp_user'@'%' identified by 'PASSWORD_HERE';
> quit
- Open the IP of server / localhost in browser. Add the database details and you are good to go.
Requires Docker & Docker-Compose Installed
- Clone this Repository
git clone https://github.com/officialasit/wp-installation-sript.git
cd wp-installation-sript
- Start the Containers
sudo docker-compose up -d
- Visit the IP of Server / localhost in browser and setup.
Credits: Inspiration taken from https://gist.github.com/NathanTheGr8/7ff8c57eb2d6f528295699f93f014091 for Install.sh Script