Advertisement
Guest User

Untitled

a guest
Feb 28th, 2020
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.73 KB | None | 0 0
  1. $ eval $(ssh-agent -s)
  2. Agent pid 3900
  3. $ echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add - > /dev/null
  4. Identity added: (stdin) (root@XXX.XXX.XXX.XXX)
  5. $ mkdir -p ~/.ssh
  6. $ chmod 700 ~/.ssh
  7. $ ssh-keyscan gitlab.com >> ~/.ssh/known_hosts
  8. # gitlab.com:22 SSH-2.0-OpenSSH_7.2p2 Ubuntu-4ubuntu2.8
  9. # gitlab.com:22 SSH-2.0-OpenSSH_7.2p2 Ubuntu-4ubuntu2.8
  10. # gitlab.com:22 SSH-2.0-OpenSSH_7.2p2 Ubuntu-4ubuntu2.8
  11. $ chmod 644 ~/.ssh/known_hosts
  12. $ rsync -e "ssh -v -p 22 -o StrictHostKeyChecking=no" --exclude={.git/,.idea/,.vscode/,node_modules/} -rvcz ./ $SSH_SERVER:/var/www/html/
  13. OpenSSH_7.6p1 Ubuntu-4ubuntu0.3, OpenSSL 1.0.2n 7 Dec 2017
  14. debug1: Reading configuration data /etc/ssh/ssh_config
  15. debug1: /etc/ssh/ssh_config line 19: Applying options for *
  16. debug1: Connecting to XXX.XXX.XXX.XXX [XXX.XXX.XXX.XXX] port 22.
  17. debug1: Connection established.
  18. debug1: permanently_set_uid: 0/0
  19. debug1: key_load_public: No such file or directory
  20. debug1: identity file /root/.ssh/id_rsa type -1
  21. debug1: key_load_public: No such file or directory
  22. debug1: identity file /root/.ssh/id_rsa-cert type -1
  23. debug1: key_load_public: No such file or directory
  24. debug1: identity file /root/.ssh/id_dsa type -1
  25. debug1: key_load_public: No such file or directory
  26. debug1: identity file /root/.ssh/id_dsa-cert type -1
  27. debug1: key_load_public: No such file or directory
  28. debug1: identity file /root/.ssh/id_ecdsa type -1
  29. debug1: key_load_public: No such file or directory
  30. debug1: identity file /root/.ssh/id_ecdsa-cert type -1
  31. debug1: key_load_public: No such file or directory
  32. debug1: identity file /root/.ssh/id_ed25519 type -1
  33. debug1: key_load_public: No such file or directory
  34. debug1: identity file /root/.ssh/id_ed25519-cert type -1
  35. debug1: Local version string SSH-2.0-OpenSSH_7.6p1 Ubuntu-4ubuntu0.3
  36. debug1: Remote protocol version 2.0, remote software version OpenSSH_7.6p1 Ubuntu-4ubuntu0.3
  37. debug1: match: OpenSSH_7.6p1 Ubuntu-4ubuntu0.3 pat OpenSSH* compat 0x04000000
  38. debug1: Authenticating to XXX.XXX.XXX.XXX:22 as 'root'
  39. debug1: SSH2_MSG_KEXINIT sent
  40. debug1: SSH2_MSG_KEXINIT received
  41. debug1: kex: algorithm: curve25519-sha256
  42. debug1: kex: host key algorithm: ecdsa-sha2-nistp256
  43. debug1: kex: server->client cipher: chacha20-poly1305@openssh.com MAC: <implicit> compression: none
  44. debug1: kex: client->server cipher: chacha20-poly1305@openssh.com MAC: <implicit> compression: none
  45. debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
  46. debug1: Server host key: ecdsa-sha2-nistp256 SHA256:m+7yf5/qcr1v2GH9MU9TZ8EDcF4CnKJUdZ3xO+FOAtw
  47. Warning: Permanently added 'XXX.XXX.XXX.XXX' (ECDSA) to the list of known hosts.
  48. debug1: rekey after 134217728 blocks
  49. debug1: SSH2_MSG_NEWKEYS sent
  50. debug1: expecting SSH2_MSG_NEWKEYS
  51. debug1: SSH2_MSG_NEWKEYS received
  52. debug1: rekey after 134217728 blocks
  53. debug1: SSH2_MSG_EXT_INFO received
  54. debug1: kex_input_ext_info: server-sig-algs=<ssh-ed25519,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521>
  55. debug1: SSH2_MSG_SERVICE_ACCEPT received
  56. debug1: Authentications that can continue: publickey
  57. debug1: Next authentication method: publickey
  58. debug1: Offering public key: RSA SHA256:oubUilu+hO1CW93erqN2mx0F/vrXzvW8e4QXjFC6o08 root@XXX.XXX.XXX.XXX
  59. debug1: Authentications that can continue: publickey
  60. debug1: Trying private key: /root/.ssh/id_rsa
  61. debug1: Trying private key: /root/.ssh/id_dsa
  62. debug1: Trying private key: /root/.ssh/id_ecdsa
  63. debug1: Trying private key: /root/.ssh/id_ed25519
  64. debug1: No more authentication methods to try.
  65. root@XXX.XXX.XXX.XXX: Permission denied (publickey).
  66. rsync: connection unexpectedly closed (0 bytes received so far) [sender]
  67. rsync error: error in rsync protocol data stream (code 12) at io.c(235) [sender=3.1.2]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement