Hello everyone.
I am at client s location and I can t acces to my repository.
The problem will be with ssh connections.
The client s connection has a proxy and I don t know how to configure it in git.
What can I do?
Thanks
Hi Cézar,
It seems the port 22 is not accessible and/or you don't have ssh daemon installed/running.
Could you have a look if port 22 is open, please? As well as that, have a look if the ssh daemon is currenctly running. If not, please start it and try to run your ssh request once again, please.
ssh has 2 main components:
ssh is pre-enabled on Linux, but in order to start sshd daemon, we need to install ssh first. Use this command to do that:
$ sudo apt-get install ssh
This will install ssh on your machine. In order to check if ssh is setup properly do this:
$ which ssh
It will throw this line on your terminal
/usr/bin/ssh
$ which sshd
It will throw this line on your terminal
/usr/bin/sshd
Kind regards,
Rafael
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.