2

Gitlab をインストールしようとしましたが、カスタム SSH ポートを入力できません。

すでに gitlab.yml のポートをカスタム ポートに設定し、ファイルを作成しました

/home/gitlab/gitlab/.ssh/config

私のプロパティで:

Host localhost
Port 100001

ここで説明されているように。

ただし、テスト時に次のメッセージが表示されます。

bundle exec rake gitlab:app:status RAILS_ENV=production
Starting diagnostic
config/database.yml............exists
config/gitlab.yml............exists
/home/git/repositories/............exists
/home/git/repositories/ is writable?............YES
ssh: connect to host localhost port 22: Connection refused
fatal: The remote end hung up unexpectedly
Can clone gitolite-admin?............YES
UMASK for .gitolite.rc is 0007? ............YES
/home/git/.gitolite/hooks/common/post-receive exists? ............YES

Finished

Gitlab に公開 ssh キーを追加できません。「GitLab は Gitolite システムにアクセスできませんでした」と表示されます。

誰でも助けることができますか?

4

1 に答える 1

2

少なくとも2つの問題があります。

構成ファイルの正しいパスは/home/gitlab/.ssh/configです。

ポート100001は存在しないため、使用できません。ポートの範囲は1〜65535ですが、9000を超えるポートを使用することをお勧めします。

于 2012-10-15T18:16:38.793 に答える