- Install Amazon AWS awscli
- Amazon Workmail
- AWS CloudFormation
- Getting Started with Amazon Elastic Beanstalk
- Deploy Docker Image using Elastic Beanstalk
- Amazon Route 53 DKIM error
- AWS Elastic Beanstalk
- Ubuntu pure-ftpd reply with unroutable address
- Amazon Elastic Container Registry
- https://www.cloudcraft.co – Draw AWS diagrams
Amazon EC2
- Migrate AWS EC2 instance to another AWS account
- Prevent an EC2 Instance getting Terminated by AutoScale
- Resize Amazon EC2 Boot Disk
- Move AWS EC2 Instance to Another AWS Region
- Amazon Elastic IP The maximum number of addresses has been reached.
- Move Elastic IP from one AWS Account to Another
Amazon RDS
- Amazon RDS ERROR 1040 (08004): Too many connections
- Migrate Amazon RDS Database (MySQL) to another AWS Account
- How to take Snapshot of Amazon RDS MySQL Database
Amazon S3
AWS Price calculator
Free AWS Credit
To backup a folder to the Amazon S3 bucket, run
aws s3 cp --recursive /path/to/folder/ s3://BUCKET_NAME/NEW_FOLDER_NAME/
Example
To sync (download) a s3 bucket to your local computer, run
aws s3 sync --no-sign-request --region us-west-2 s3://BUCKET_NAME/ ./localpath/
To list all s3 buckets, run
aws s3 list
Example
root@server2 [~]# aws s3 ls
2016-04-30 09:15:38 bkjoe
2016-11-30 07:38:38 server2bc
root@server2 [~]# aws s3 ls s3://server2bc/
PRE 2017-12-22/
PRE monthly/
PRE weekly/
root@server2 [~]#
Leave a Reply