목록Key (5)
변군이글루

개인키로 공개키 생성하기 Private Key file(id_rsa) -> Public Key file(id_rsa.pub) usage: ssh-keygen -y -f [input_keyfile] > [output_keyfile] $ ssh-keygen -y -f ~/aws-key/awsaccesskey.pem > ~/aws-key-pair/awsaccesskey.pub

PuTTY Key Generator 파일 변환 : .pem 파일을 .ppk 파일로 변환 1. 실행 > Conversions > Import Key 2. 변환할 .pem 파일 선택 3. Save private key 클릭 후 원하는 경로에 .ppk 파일 저장 https://www.puttygen.com/convert-pem-to-ppk

사설인증서(SSL) 생성 KEY 생성 openssl genrsa -out server.key 2048 root@2d2140e1fcb9:/usr/local/apache2/logs# openssl genrsa -out server.key 2048 Generating RSA private key, 2048 bit long modulus (2 primes) ........................+++++ ............+++++ e is 65537 (0x010001) CSR 생성 openssl req -new -key server.key -out server.csr ----- Country Name (2 letter code) [AU]:KR State or Province Name (full nam..

AWS KMS KEY 생성 KMS 키 생성 ###KMS 키 생성 $ aws --profile byun_profile --region ap-northeast-2 kms create-key KMS AliasName 생성 ###KMS AliasName 생성 ###aws kms create-alias --alias-name "AliasName" --target-key-id "KeyId" $ aws --profile byun_profile --region ap-northeast-2 kms create-alias --alias-name "alias/kms-slack-key" --target-key-id "83advf5d-31d6-404a-b99c-d24a83a33265" KMS 키 리스트 ###KMS 키 리스트 $..