天天看點

Mac環境下終端(Terminal)用ssh 連接配接伺服器問題 Received disconnect from 120.55.x.x: 2: Too many authentication failu...

由于這台Mac配置git生成公鑰後,ssh連接配接就出現來這個問題

Received disconnect from 120.55.x.x: 2: Too many authentication failures for root

出現後隻需要在 ssh 後面 加上 

-o PubkeyAuthentication=no

 這個參數,連接配接正常。

如果不想每次加-o參數就添加個配置檔案(預設沒有) ~/.ssh/config

回頭再push origin的時候又出現了這樣的問題

git push origin master

Warning: Permanently added the RSA host key for IP address '192.30.252.128' to the list of known hosts.

Permission denied (publickey).

fatal: Could not read from remote repository.

Please make sure you have the correct access rights

and the repository exists.

-----------------------------分割線----------------------------------
           

   vi ~/.ssh/config

   注釋掉

git push origin master

Counting objects: 3, done.

Delta compression using up to 4 threads.

Compressing objects: 100% (3/3), done.

Writing objects: 100% (3/3), 992 bytes | 0 bytes/s, done.

Total 3 (delta 0), reused 0 (delta 0)

To [email protected]:l496501043/first.git

   d0cff78..8399039  master -> master

-----------------------------分割線----------------------------------
           

       又回去 ssh 120.55.x.x -l root

      連接配接不上,繼續push origin到github也正常

      那就接着加參數連接配接ssh 120.55.x.x -l root -o PubkeyAuthentication=no

-----------------------------分割線----------------------------------
           
-----------------------------分割線----------------------------------
           

轉載于:https://www.cnblogs.com/liugx/p/5118622.html