I have installed Bitbucket server behind nginx. Everything is working except SSH connections to my repository. If i try:
git clone ssh://git@domain.com:7999/wp/news.git
I am getting the following error:
Cloning into 'news'... ssh: connect to host git.domain.com port 7999: Operation timed out fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists.
I have successfully enabled SSH in the settings page: https://yadi.sk/i/Ru6Q4E09xvCiM
If i try to connect without mentioning port 7999 i am asked for a password, but none of them works. My Bitbucket server works behind nginx.
Community moderators have prevented the ability to post new answers.
Is port 7999 open on the server? You may have a firewall rule that prevents connections on that port.
What do you get when you run the following?
ssh -p 7999 git@git.domain.com whoami
I am getting timeout. But if i do that on a host machine i get permission denied (public key). So i've installed haproxy, but cannot set it up... god.. http://stackoverflow.com/questions/40361894/haproxy-config-for-bitbucket-server
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I just commented on the Stack Overflow question, try adding "mode tcp" to the front end. It seems to be defaulting to http.
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.