본문 바로가기

Cloud/AWS19

[2021.07.21~22] 인턴 +142 How to mount(access) AWS S3 from EC2? [2021.07.21~22] 인턴 +142 How to mount(access) AWS S3 from EC2? 해당 게시글은 AWS EC2(가상 머신 리눅스 서버) 에서 AWS S3에 접근하는 방법에 대해 알아보자. 수 많은 에러가 발생하였다. (다 해결 완료, 에러는 초록색으로 표시) ubuntu@ip-172-31-9-174:~$ sudo apt-get install build-essential git libfuse-dev libcurl4-openssl-dev libxml2-dev mime-support automake libtool 위의 명령어 수행 시 에러 발생 1 E: dpkg was interrupted, you must manually run 'sudo dpkg --configure -a' t.. 2021. 7. 22.
[2021.07.21~22] 인턴 +142 How to upload multiple files from local PC to AWS S3 using python(boto3)? [2021.07.21~22] 인턴 +142 How to upload multiple files from local PC to AWS S3 using python(boto3)? 해당 게시글은, 로컬 PC 에서 AWS S3에 파일 업로드 하는 방법을 알려주도록 하겠다. (3시간 정도 소요) https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3.html#S3.Client.upload_file S3 — Boto3 Docs 1.18.3 documentation A dictionary with two elements: url and fields. Url is the url to post to. Fields is a dictiona.. 2021. 7. 21.
[2021.07.08] 인턴 +129 How to set up crawling in Linux (AWS EC2 Ubuntu 20.04)? (+How to install selenium in Linux?) [2021.07.08] 인턴 +129 How to set up crawling in Linux (AWS EC2 Ubuntu 20.04)? (+How to install selenium in Linux?) 이 게시글은, AWS EC2를 만들 때, 버전이 Amazon Linux 2 AMI 가 아닌, Ubuntu20.04 에서 크롤링 개발 환경 설정 방법이다. 그렇기 때문에, Amazon Linux 2 AMI 와 Ubuntu20.04 에서 각각 리눅스에서 크롤링을 설정하는 방법이 다름 https://injekim97.tistory.com/298?category=942698 [2021.07.07] 인턴 +128 How to set up crawling in Linux (Amazon Linux 2 AMI)? ::.. 2021. 7. 8.
[2021.07.07] 인턴 +128 How to install pip on Linux (Amazon Linux 2 AMI)? [2021.07.07] 인턴 +128 How to install pip on Linux (Amazon Linux 2 AMI)? https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/concepts.html What is Amazon EC2? - Amazon Elastic Compute Cloud What is Amazon EC2? Amazon Elastic Compute Cloud (Amazon EC2) provides scalable computing capacity in the Amazon Web Services (AWS) Cloud. Using Amazon EC2 eliminates your need to invest in hardware up front, s.. 2021. 7. 7.
[2021.07.07] 인턴 +128 How to solve Permission denied (publickey,gssapi-keyex,gssapi-with-mic) in AWS EC2 VM Connecting [2021.07.07] 인턴 +128 How to solve Permission denied (publickey,gssapi-keyex,gssapi-with-mic) in AWS EC2 VM Connecting -> AWS EC2를 만들때 설정한 환경이다. -> Amazon Linux 2 AMI (HVM), SSD Volume Type 을 사용하면, yum 을 통해 pip를 설치 해줘야함 -> 또한, ssh -i *.pem userid=ec2-user@ipv4주소로 접속해야 한다. 오랜만에, AWS EC2 인스턴스에, Git Bash를 통해서, 접속하려고 한다. 하지만, 아래와 같은 에러메세지가 발생한다 ssh -i sleegiv.pem ec2-13-125-144-25.ap-northeast-2.comp.. 2021. 7. 7.
[2021.06.29] 인턴 +120 How to connect AWS S3 using Python ?(+boto3) [2021.06.29] 인턴 +120 How to connect AWS S3 using Python ?(+boto3) Boto3 란? -> Python 언어 용 AWS 서비스와 쉽게 통합 할 수 있도록 AWS는 boto3 라는 SDK를 제공 -> Python 애플리케이션을 S3 , DynamoDB , SQS 및 더 많은 서비스와 통합 할 수 있음 (데이터 저장, 검색 및 삭제가능) how to install Boto3 ? pip install boto3 Sample code for using boto3 module import boto3 lambda_client = boto3.client('lambda', region_name='ap-northeast-2', aws_access_key_id='자격증명 생.. 2021. 6. 29.