Linux OS에서 AWS CLI를 설치하고 구성하는 방법
2325 단어 webdevlinuxawsprogramming
일부 인스턴스에는 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 서비스에 대해 작업할 수 있습니다.
Reference
이 문제에 관하여(Linux OS에서 AWS CLI를 설치하고 구성하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/sholaumakhihe/how-to-install-and-configure-the-aws-cli-on-linux-os-2dma텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)