Linux OS에서 AWS CLI를 설치하고 구성하는 방법

Amazon Web Service 명령줄 인터페이스(CLI)는 AWS 서비스 및 제품에 연결하는 가장 빠르고 쉬운 방법입니다.

일부 인스턴스에는 Amazon Linux 인스턴스와 같은 CLI가 사전 설치되어 있지만 Red Hat Linux와 같은 인스턴스에는 그렇지 않습니다. 이 기사에서는 인스턴스에서 CLI를 설치하고 구성하는 방법을 보여줍니다.

AWS 인스턴스 계정에 대한 보안 셸 연결(SSH)이 필요하며 구성 및 설치해야 합니다.

전제 조건: AWS 계정, SSH 액세스 키, Linux OS 설치 컴퓨터, 인터넷 액세스 및 안정적인 마음.

STEP 1: Create an instance in your EC2



- Login to your AWS management console and navigate to EC2
- Create an EC2 with the Red Hat Linux AMI
- Select Network and security in the navigation pane, and enter key pairs
- Select Create Key Pair.
- Then, select the format of the file (. pem)
- Then, download


STEP 2: Connect to your instance using SSH



- Open your terminal with Shift + Ctrl + T
- Navigate to your downloads or anywhere you must have downloaded the .PEM file with “cd downloads”
- Change the permission on it with chmod 400 <filename.pem>
- Go to your AWS management console, go instance.
- Select the the instance type
- By the description tab copy the IPv4 Public IP value.
- Go back to your terminal and run this command ssh -i labsuser.pem ec2-user@<public-ip> (replace <public-ip> with your IPv4 Public IP)
- Type “yes” at the prompt.
- Voila, connected sucessfully


STEP 3: Install the AWS CLI on Red Hat Linux



이제 Amazon EC2에서 실행되는 Red Hat Linux 인스턴스에 대한 활성 SSH 연결이 있으므로 다음은 AWS CLI를 설치하는 것입니다.

- Run sudo yum install -y unzip
- Then, run curl “https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o “awscliv2.zip”
- Then, unzip awscliv2.zip
- Then, sudo ./aws/install
- Verify that AWS CLI is now working by running the following command: aws help
- At the : prompt, type q to exit.
- You are set.


STEP 4: Configure the AWS CLI to connect to your AWS Account



AWS 계정을 AWS CLI에 연결할 시간입니다. 활성 SSH 세션 터미널 창으로 이동하여 aws configure를 실행합니다. 프롬프트에서 AWS 액세스 키 ID와 AWS 보안 액세스 키를 입력합니다.

모든 설정이 완료되었으므로 이제 로컬 터미널을 사용하여 개인 컴퓨터에서 EC2 인스턴스 및 기타 모든 AWS 서비스에 대해 작업할 수 있습니다.

좋은 웹페이지 즐겨찾기