SSH Failure for Openshift Server

I am working with jboss catridge on openshift server. I want to share this instance with another person and add the public key of another user (id_rsa.pub). When another person tries to access the instance, he gets the error below. I tried them with its instance, and I see the same error. What is the best way to exchange code with an openshift instance and code synchronization between developers. In this case, we do not have a private Github repository. Please advise.

2013-02-09 14:37:47 Connecting to 54.234.36.245 port 22 2013-02-09 14:37:47 Server version: SSH-2.0-OpenSSH_5.3 2013-02-09 14:37:47 Using SSH protocol version 2 2013-02-09 14:37:47 We claim version: SSH-2.0-PuTTY_Release_0.61 2013-02-09 14:37:47 Doing Diffie-Hellman group exchange 2013-02-09 14:37:47 Doing Diffie-Hellman key exchange with hash SHA-256 2013-02-09 14:37:51 Host key fingerprint is: 2013-02-09 14:37:51 ssh-rsa 2048 cf:ee:77:cb:0e:fc:02:d7:72:7e:ae:80:c0:90:88:a7 2013-02-09 14:37:51 Initialised AES-256 SDCTR client->server encryption 2013-02-09 14:37:51 Initialised HMAC-SHA1 client->server MAC algorithm 2013-02-09 14:37:51 Initialised AES-256 SDCTR server->client encryption 2013-02-09 14:37:51 Initialised HMAC-SHA1 server->client MAC algorithm 2013-02-09 14:37:51 Using SSPI from SECUR32.DLL 2013-02-09 14:37:51 GSSAPI authentication request refused 2013-02-09 14:37:51 Access denied 2013-02-09 14:37:51 Disconnected: No supported authentication methods available (server sent: publickey,gssapi-keyex,gssapi-with-mic) 
+5
git ssh openshift
source share
2 answers

I finally got this from work:

  • Adding my converted key (.ppk file) from puttygen to pagent.
  • Access the git url that is defined in the openshift server using putty.

Both ssh and git accesses work correctly.

+7
source share

If you use GSSAPI for authentication, your system and server must enable it. Based on your error message, this is apparently the last authentication attempt before the failure.

0
source share

All Articles