Launching Wordpress app Using AWS EC2 and AWS RDS service
Kartik Arora
?? Innovative CTO Revolutionizing Technology Solutions for Drona. Let's Shape the Future Together! ?
andStep 1: Launching AWS EC2 instance.where, we install our Wordpress App.
Step 2: Now, our Instance is Launched and now we are going to install requires software for wordpress.
dnf install php-mysqlnd php-fpm mariadb-server httpd tar curl php-json wget -y
And after installing required softwares now we have to install our Wordpress app over our instance. and coping the Wordpress app under /var/www/html/ Directory.
curl https://wordpress.org/latest/tar.gz --output wordpress.tar.gz tar xf wordpress.tar.gz cp -r wordpress /var/www/html
Now we have to start out Httpd service.
Lets Check Wordpress App is working or not!!
So, its working!!
Step 3: Now we have to create our MySQL Database server using AWS RDS service.
as we can see our MySQL Database is created and now we have to connect our database to our Wordpress application and for that we require Database Name, Username, Password, and Database Host.
As we can see we have successfully completed this task!!
Thank You
Hope You Find This Useful!!