Hello! I'm currently working on Ruby on Rails Tutorial by Michael Hartl and every time I try to push remote repository I get the error...
ssh: connect to host bitbucket.org port 22: Connection refused
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
I tried resetting my SSH key but nothing seems to be working. Can anybody help me solve this problem? Thanks in advance!
I should also note that we support SSH using port 443, in case you cannot connect via port 22: https://confluence.atlassian.com/display/BITBUCKET/Use+the+SSH+protocol+with+Bitbucket#UsetheSSHprotocolwithBitbucket-SSHonPort443
A typical git remote (push/fetch) entry would be:
git@altssh.bitbucket.org:443/accountname
/reponame/
Hi Yoobin,
This looks like for some reason you aren't being able to connect on port 22 on Bitbucket.
I believe the first thing we need to confirm is if you are able to connect on this port. What is the return of the comman:
telnet bitbucket.org 22
You should be able to connect.
Regards,
Renato Rudnicki
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sounds like your SSH connection is not set up correctly. Take a look at this answer detailing exactly how to fix it: http://stackoverflow.com/questions/16074832/cannot-push-to-git-repository-on-bitbucket
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I don't think its the SSH connection because previously it worked fine. I asked the same question on stackoverflow as well, but some are claiming that its my firewall setting that is causing the problem. I've read the posting that you linked but it didn't really help me solve my problem.. =(.. I'm using cloud 9 program right now to run the application, is there something I can do on here to solve the problem possibly?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.