전체 글
-
AWS CodeCommit 세팅카테고리 없음 2020. 12. 10. 16:26
# AWS CONFIG 기본 세팅 되어 있음 root@cccc:~/.ssh# ssh-keygen Generating public/private rsa key pair. Enter file in which to save the key (/root/.ssh/id_rsa): utest.pem # 값 입력 Enter passphrase (empty for no passphrase): Enter same passphrase again: Your identification has been saved in utest.pem Your public key has been saved in utest.pem The key fingerprint is: root@ccc:/home/CODE-git# cat ~/.ssh/confi..
-
/bin/ssh-copy-id: ERROR: No identities found카테고리 없음 2020. 12. 10. 12:40
#에러 메시지 [root@jenkins]# sshpass -p "password" ssh-copy-id root@192.168.0.7 /bin/ssh-copy-id: ERROR: No identities found #해결 ssh root@192.168.0.7 접속 후 #다시 시도 sshpass -p "password" ssh-copy-id root@192.168.0.7 [root@jenkins]# sshpass -p "password" ssh-copy-id root@192.168.0.7 /bin/ssh-copy-id: INFO: Source of key(s) to be installed: "/root/.ssh/id_rsa.pub" /bin/ssh-copy-id: INFO: attempting to log..
-
-
Error executing action `create` on resource 'acme_certificate[staging]'카테고리 없음 2020. 12. 9. 11:24
#에러메시지 Error executing action `create` on resource 'acme_certificate[staging]' vi /opt/gitlab/embedded/cookbooks/letsencrypt/resources/certificate.rb # 주석처리 # acme_certificate 'staging' do # alt_names new_resource.alt_names unless new_resource.alt_names.empty? # key_size new_resource.key_size unless new_resource.key_size.nil? # group new_resource.group unless new_resource.group.nil? # owner new_..