Installing CodeDeploy Agent
Install CodeDeploy Agent
- Do SSH into EC2

- Then install CodeDeploy Agent
sudo yum update -y
sudo yum install ruby -y
sudo yum install wget -y
/opt/codedeploy-agent/bin/codedeploy-agent stop
sudo yum erase codedeploy-agent -y
cd /home/ec2-user/
wget https://bucket-name.s3.region-identifier.amazonaws.com/latest/install
chmod +x ./install
sudo ./install auto
- For bucket name: is the name of Amazon S3 bucket including CodeDeploy Resource Kit files.
- region-identifier: example as follows
wget https://aws-codedeploy-ap-southeast-1.s3.ap-southeast-1.amazonaws.com/latest/install

- Check the service is running, use the following command:
sudo service codedeploy-agent status
- If the service has an error or is not running, use the following command to start the service:
sudo service codedeploy-agent start
sudo service codedeploy-agent status

- Make a move to the tmp folder
cd /tmp
ls

- Install git to clone resources to:
sudo yum install git

- You will perform a clone of the WordPress source.
git clone https://github.com/AWS-First-Cloud-Journey/WordPress

- After cloning the WordPress resource
- You make the move to the directory:
ls
WordPress cd
ls
cat appspec.yml
- You also see the contents of the appspec.yml lifecycle deploy configuration.

- Do clone script files in appspec.yml . configuration file
git clone https://github.com/AWS-First-Cloud-Journey/scripts
