我的gitlab管道作业无法通过SSH连接到数字海洋上的生产服务器。据我所知,我已经正确地完成了所有操作:
~/.ssh/authorized_keys
chmod -R go= ~/.ssh
和chown -R $USER:$USER ~/.ssh
以确保正确设置了权限PRODUCTION_PRIVATE_KEY
变量中。运行作业后,使用错误代码连接到服务器时,它仍然失败:
root@123.456.789.10: Permission denied (publickey).
ERROR: Job failed: exit code 1
这是我的 .gitlab-ci.yml:
before_script:
- 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )'
- 'apt-get update -y && apt-get -y install rsync'
- mkdir -p ~/.ssh
- eval $(ssh-agent -s)
- '[[ -f /.dockerenv ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config'
stage_deploy:
artifacts:
paths:
- /
#only run script when pushed to master branch
only:
- master
script:
#get private key
- ssh-add <(echo "$PRODUCTION_PRIVATE_KEY")
#make a _tmp directory on server **THIS IS WHERE IT FAILS**
- ssh -p22 root@123.456.789.10 "mkdir /var/www/html/example.com_tmp"
#copy all repo files to _tmp
- rsync -avz --exclude=.git --exclude=src -r /builds/geochanto/example-wp/ george@123.456.789.10:/var/www/html/example.com_tmp
#move site folder to _old, move _tmp to site
- ssh -p22 j8rqv2sd9lt6@107.180.54.236 "mv /var/www/html/example.com/ /var/www/html/example.com_old && mv /var/www/html/example.com_tmp /var/www/html/example.com"
#remove _old folder
- ssh -p22 j8rqv2sd9lt6@107.180.54.236 "rm /var/www/html/example.com_old"```