Host your Wordpress website on Amazon Web Services using the AWS EC2 Free Tier Instance! Easily and quickly install your WordPress blog on Amazon's servers.
Install Wordpress on AWS EC2 in 5 Minutes
1 HTTP,PHP,MYSQL Server Installation
2 Database Configuration
3 Download wordpress site
4 Configure the wordpress with database
Steps
#!/bin/bash
yum update -y
yum install httpd
yum install php php-mysql -y
yum install mysql-server -y
service httpd start
service mysqld start
mysqladmin -uroot create mydb
cd /var/www/html
wget http://wordpress.org/latest.tar.gz
tar -xzf latest.tar.gz
mv wordpress/ testwordpress
cd testwordpress
mv wp-config-sample.php wp-config.php
No comments:
Post a Comment