Edit Post

Select a category for your post

Click tags to select/deselect

Markdown supported: # Heading, **bold**, *italic*, `code`, - list items, etc.
Tip: Paste images directly from clipboard or drag-and-drop to upload!

Installation guide

shell
curl "https://awscli.amazonaws.com/awscli-exe-linux-aarch64.zip" -o "awscliv2.zip"
unzip awscliv2.zip
sudo ./aws/install --bin-dir /usr/local/bin --install-dir /usr/local/aws-cli --update
  1. Verification of the succesful installation aws --version
  2. Create a new AWS IAM user: Add users -> User name -> Select AWS credential type -> Access key - Programmatic access -> Attach existing policies directly -> AdministratorAccess -> Default -> Create User -> Success -> Copy Access key ID & Secret access key
  3. aws configure and fill in Access key ID and Secret access key, together with 'Default region name', 'Default output format'(None)
  4. Testing with creating a new AWS s3 bucket aws s3 mb "s3://a-bucket-just-for-testing-purpose"
Cancel