본문 바로가기

분류 전체보기23

Python Scripts and Modules (Part 1) AWS API를 활용하여 기술적으로 확인해봐야할때, 파이선을 사용하여 AWS SDK (boto3)를 Import하여 스크립트를 작성하여 진행하는게 굉장히 일반적이고 흔합니다. 저는 Biology & Computer Science를 전공한 사람으로서, 프로그래밍은 많이 해봤지만 스크립트 위주로 Biological Data를 처리하는데 Computer Science를 활용했었기 때문에, 일반적인 개발이 아닌 스크립트 작성을 많이 했었죠.  하지만 본격적으로 AWS를 하면서 AWS SDK를 활용한 저만의 라이브러리를 꾸준히 커밋하고자 하는 목표가 생겼고, 그 목표를 위해 코딩을 배우는것보다, Python의 구조와 모듈, 클래스, 객체 구성의 이해가 좀 더 필요한 상황이라고 생각이 들었습니다.워낙 좋은 교본을 .. 2024. 4. 28.
AWS-CLF-C02 개념정리 https://www.examtopics.com/exams/amazon/aws-certified-cloud-practitioner-clf-c02/view/18/ last page for free access finished review by 2024-01-16 test taken 20240-01-17 ++++++++++++++++++ # S3 - data into S3 FREE, Data out of S3 NOT - highly durable object storage ## Versioning - preserve, retrieve, restore every version of every objects in S3 # Amazon FSx - fully managed Windows file server # A.. 2024. 1. 17.
Server Message Block SMBv1 - Signing optional - Encryption, not a built-in feature - Uses NTLM(NT LAN Manager) for session security SMBv2 1. Signing by default SMB signing means that every SMB 3.1.1 message contains a signature generated using session key and AES. The client puts a hash of the entire message into the signature field of the SMB2 header. https://techcommunity.microsoft.com/t5/storage-at-microsoft/conf.. 2024. 1. 12.
Ubuntu에서 간단하게 Flask로 Web Server 만들기! AWS 환경에서 Ubuntu EC2 만든 후 Flask로 간단한 Web Server 만들어보겠습니다! 1. Ubuntu EC2 만들기 EC2 > Launch Instance 클릭 필수설정은 아래와 같고, 나머지는 필요 것 설정하면 됩니다! OS: Ubuntu 22.04LTS Network Settings: Auto-assign Public IP: Enable (자동 Public IP 할당) Enable 안할 경우, EC2 생성 후 따로 Elastic IP 할당해줘야 합니다. Security Group: 22, 80, 5001 Port Open from Anywhere 0.0.0.0/0 보안을 위해서 My IP로 IP 접근제어 할 수 있습니다. 5001은 Flask에서 지정하여 사용하는 포트입니다, 수정 .. 2024. 1. 5.