본문 바로가기

728x90

전체 글

[python] List of Keywords in Python List of Keywords in Python Keywords list >>> import keyword >>> print(keyword.kwlist) ['False', 'None', 'True', '__peg_parser__', 'and', 'as', 'assert', 'async', 'await', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'finally', 'for', 'from', 'global', 'if', 'import', 'in', 'is', 'lambda', 'nonlocal', 'not', 'or', 'pass', 'raise', 'return', 'try', 'while', 'with', 'yield'.. 더보기
vscode 단축키(keyboard shortcuts) vscode 단축키(keyboard shortcuts) macOS Windows macos : https://code.visualstudio.com/shortcuts/keyboard-shortcuts-macos.pdf windows : https://code.visualstudio.com/shortcuts/keyboard-shortcuts-windows.pdf 참고URL - https://code.visualstudio.com/docs/getstarted/keybindings - https://mansu.tistory.com/46?category=850460 더보기
CNCF Cloud Native Interactive Landscape CNCF Cloud Native Interactive Landscape https://landscape.cncf.io/ 더보기
원도우 11의 CMD에서 doskey 명령어를 사용하여 Bash 스타일의 alias 명령어를 사용하는 방법 원도우 11의 CMD에서 doskey 명령어를 사용하여 Bash 스타일의 alias 명령어를 사용하는 방법 doskey를 이용하면 CMD에서 일련의 명령어를 짧은 단어나 문자로 대체하여 편리하게 사용할 수 있습니다. 이러한 설정은 현재 세션에서만 유지되며 새로운 CMD 세션을 시작할 때마다 재설정해야 합니다. doskey alias 설정 방법 1. CMD(명령 프롬프트)를 엽니다. 2. doskey 명령어를 사용하여 alias를 설정합니다. 일반적으로 다음과 같은 구문을 사용합니다. doskey alias=명령어 여기서 alias는 단축 명령어(별칭)이고, 명령어는 실행할 명령어입니다. 3. 예시를 통해 알아봅시다. CMD에서 ls라는 명령어를 실행하면 dir 명령어가 실행되도록 alias를 설정하는 방.. 더보기
SRE(사이트 신뢰성 엔지니어링)란? SRE(사이트 신뢰성 엔지니어링)란? - redhat.com : https://www.redhat.com/ko/topics/devops/what-is-sre - netapp.com : https://www.netapp.com/ko/devops-solutions/what-is-site-reliability-engineering/ - microsoft.com : https://docs.microsoft.com/ko-kr/learn/modules/intro-to-site-reliability-engineering/ - elastic.co : https://www.elastic.co/kr/blog/elastic-observability-sre-incident-response 더보기
[draft] 우분투에서 스왑 메모리를 설정하는 방법 우분투(ubuntu 22.04)에서 스왑 메모리(swap memory)를 설정하는 방법Ubuntu 22.04에서는 기본적으로 스왑 파일을 자동으로 생성하도록 설정되어 있습니다. 그러나 기본 스왑 파일 크기는 일반적으로 시스템의 물리적 메모리 크기에 따라 자동으로 조정됩니다. 일반적으로 Ubuntu 22.04에서는 물리적 메모리 크기의 약 50%에서 66% 정도를 기본 스왑 파일 크기로 설정합니다. 예를 들어, 시스템이 4GB RAM을 가지고 있다면 기본 스왑 파일 크기는 약 2GB에서 2.7GB 정도로 설정될 수 있습니다. 이렇게 작은 기본 스왑 파일은 일반적으로 일상적인 작업 및 가벼운 서버 운영에는 충분하지만, 메모리 집약적인 작업이나 대규모 애플리케이션을 실행할 때에는 스왑 공간이 부족할 수 있습니.. 더보기
[AWS] macOS에 Session Manager 플러그인 설치 및 제거 macOS에 Session Manager 플러그인 설치 및 제거 설치 환경 $ aws --version aws-cli/2.4.18 Python/3.8.8 Darwin/21.5.0 exe/x86_64 prompt/off $ which python3 /opt/homebrew/bin/python3 aws ssm start-session --target i-0b9c5 $ aws ssm start-session --target i-0b9c5 SessionManagerPlugin is not found. Please refer to SessionManager Documentation here: http://docs.aws.amazon.com/console/systems-manager/session-manager-p.. 더보기
AWS Session Manager를 사용하여 EC2 인스턴스에 연결하는 방법 AWS Session Manager를 사용하여 EC2 인스턴스에 연결하는 방법 구성도 Role 생성 IAM > 액세스 관리 > 역할 > 역할 만들기 신뢰할 수 있는 유형의 개체 선택 : AWS 서비스 사용 사례 선택 : EC2 IAM > 액세스 관리 > 역할 > 역할 만들기 권한 정책 연결 : AmazonEC2RoleforSSM IAM > 액세스 관리 > 역할 > 역할 만들기 태그 추가 IAM > 액세스 관리 > 역할 > 역할 만들기 검토 역할 이름 : EC2RoleforSSM 생성한 역할 확인 IAM > 역할 인스턴스에 "EC2RoleforSSM" 적용하기 1. 인스턴스 생성 시 2. 기존 인스턴스에 IAM 역할 추가 웹 콘솔로 SSH 접속하기 AWS Systems Manager > 세션 관리자 AWS.. 더보기

728x90