Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SSH to Openshift server fails

Tags:

git

ssh

openshift

I am working with jboss catridge on a openshift server. I am looking to share this instance with another person and added the other user' s public key(id_rsa.pub). When the other person tries to access the instance he is getting the error below. I tried them same with his instance and I am seeing the same error. What is the best way to share code with the openshift instance and synching the code between developers. Al this point we dont have a private Github repo. 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)
like image 321
randominstanceOfLivingThing Avatar asked Feb 09 '13 23:02

randominstanceOfLivingThing


1 Answers

I finally got this to work by:

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

Both ssh and git access are working correctly now.

like image 138
randominstanceOfLivingThing Avatar answered Oct 31 '22 15:10

randominstanceOfLivingThing