GitLab CI: SSH başarısız, özel anahtarın kimliği doğrulanamıyor

Aug 18 2020

Gitlab-CI'daki sunucuma SSH'yi denemek için bu bağlantıyı takip ettim. SSH anahtarları için sunucuya girdim ve genel ve özel anahtarları oluşturdum. Özel anahtar, GitLab CI / CD env değişkenlerine çıkarılır.

YAML şablonu aşağıdaki gibidir, çoğunlukla bağlantıdan kopyalanmıştır.

    image: docker:19.03.8
      services:
        - docker:19.03.8-dind

    deployment:
      variables:
        ip: <ip-address>
      script:
        - apk add --update openssh-client sshpass
        - eval $(ssh-agent -s) - echo "$SSH_PRIVATE_KEY" | ssh-add - > /dev/null
        - mkdir -p ~/.ssh
        - chmod 700 ~/.ssh
        - export SSHPASS=$AWS_PASSWORD - sshpass -e ssh -o StrictHostKeyChecking=no -vvv ubuntu@$ip echo testing

Ancak, özel anahtara erişmeye çalışırken bir hatayla karşılaştım.

    debug1: Authentications that can continue: publickey,password
    debug1: Trying private key: /root/.ssh/id_rsa
    debug3: no such identity: /root/.ssh/id_rsa: No such file or directory
    debug1: Trying private key: /root/.ssh/id_dsa
    debug3: no such identity: /root/.ssh/id_dsa: No such file or directory
    debug1: Trying private key: /root/.ssh/id_ecdsa
    debug3: no such identity: /root/.ssh/id_ecdsa: No such file or directory
    debug1: Trying private key: /root/.ssh/id_ed25519
    debug3: no such identity: /root/.ssh/id_ed25519: No such file or directory
    debug1: Trying private key: /root/.ssh/id_xmss
    debug3: no such identity: /root/.ssh/id_xmss: No such file or directory
    debug2: we did not send a packet, disable method
    debug3: authmethod_lookup password
    debug3: remaining preferred: ,password
    debug3: authmethod_is_enabled password
    debug1: Next authentication method: password
    debug3: send packet: type 50
    debug2: we sent a password packet, wait for reply
    debug3: receive packet: type 51
    debug1: Authentications that can continue: publickey,password
    Permission denied, please try again.

Yardımcı olacaksa gitlab paylaşımlı koşucu kullanıyorum.

[Güncelleme]

Ben bağlamak istediğiniz sunucuda, ben genel anahtarları eklendi eklemek unuttum id_rsa.pubiçine authorized_keysdosyaları.

[Düzenle 1]

Önerildiği gibi, çıktıyı $ SSH_KNOWN_HOSTS değişkeni olarak kopyalamak için ssh-keyscan kullanan bilinen ana bilgisayarları ekledim. Güncellenen yaml dosyasının altında. Ancak aynı hatayla karşılaştım.

    deployment:
      variables:
        ip: <ip-address>
      script:
        - apk add --update openssh-client sshpass
        - eval $(ssh-agent -s)
        - echo "$SSH_PRIVATE_KEY" | ssh-add - > /dev/null - mkdir -p ~/.ssh - chmod 700 ~/.ssh - touch ~/.ssh/known_hosts - echo "$SSH_KNOWN_HOSTS" >> ~/.ssh/known_hosts
        - chmod 644 ~/.ssh/known_hosts
        - export SSHPASS=$AWS_PASSWORD - sshpass -e ssh -o StrictHostKeyChecking=no -vvv ubuntu@$ip echo testing

Yanıtlar

2 DV82XL Aug 18 2020 at 12:45

sshpassGenelde genel / özel anahtarları kullandığım için emin değilim . Uzak sunucularda SCP/ SSHkomutlarını çalıştırmak için kuracağım bir iş örneği :

deploy:
  stage: deploy
variables:
  hostname: app-dev
before_script:
  # optional step if you decide to use a hostname instead of IP address
  - cp -f ./network/etc/hosts /etc/hosts
  # Setup SSH
  - which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )
  - eval $(ssh-agent -s) - ssh-add <(cat $SSH_PRIVATE_KEY)
  - mkdir -p ~/.ssh
  - chmod 700 ~/.ssh
  - ssh-keyscan $HOSTNAME >> ~/.ssh/known_hosts - chmod 644 ~/.ssh/known_hosts script: # Copy files and execute commands - scp ./scripts/install_package.sh root@$HOSTNAME:/tmp/deploy
  - ssh root@$HOSTNAME "/tmp/deploy/install_package.sh && exit"

İşlem hattını çalıştırmadan önce aşağıdakileri yapmanız gerekir:

  1. Kullanarak ssh anahtar çiftleri oluşturun ssh-keygen. Parola kullanmayın. Genel anahtar ile biter .pub, özel anahtarın uzantısı yoktur.
  2. SSH'yi uzak sunucuya kopyalayın, genel anahtarın içeriğini~/.ssh/authorized_keys
  3. Özel anahtarınızın içeriğini, adı verilen bir GitLab Dosya Ortamı Değişkenlerine kopyalayın.SSH_PRIVATE_KEY
  4. Bir $HOSTNAMEortam değişkeni kullanıyorsanız, ardışık düzeninizdeki değişkeni tanımlayın ve IP / ana bilgisayar adını /etc/hostsardışık düzen konteynerinizdeki dosyaya ekleyin. Aksi takdirde, bunun yerine bir IP adresi kullanın.