From f4c352cae0b0a092be3f46ec3a84c98b04d82f43 Mon Sep 17 00:00:00 2001 From: Marc Romano Date: Sun, 22 Jul 2012 11:22:11 +0300 Subject: [PATCH] add ssh "connection refused" solution in installation doc --- doc/installation.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/doc/installation.md b/doc/installation.md index 3dfedfe10ad..7a44db382cb 100644 --- a/doc/installation.md +++ b/doc/installation.md @@ -127,7 +127,16 @@ Permissions: sudo -u gitlab -H git clone git@localhost:gitolite-admin.git /tmp/gitolite-admin # if succeed you can remove it - sudo rm -rf /tmp/gitolite-admin + sudo rm -rf /tmp/gitolite-admin + + # if failed and return like this + ssh: connect to host localhost port 22: Connection refused + # add follow line in /etc/ssh/sshd_config + ListenAddress 127.0.0.1 + # and restart sshd + reload ssh + + **IMPORTANT! If you cant clone `gitolite-admin` repository - DONT PROCEED INSTALLATION** -- GitLab