在gitlab中使用gitlab-sshd替换ssh服务

参考:https://docs.gitlab.com/ee/administration/operations/gitlab_sshd.html

说明

gitlab-sshd 是 OpenSSH 的轻量级替代品,用于提供 SSH 操作。虽然 OpenSSH 使用受限的 shell 方法,但 gitlab-sshd 的行为更像是一个现代的多线程服务器应用程序,响应传入的请求。主要区别在于 OpenSSH 使用 SSH 作为传输协议,而 gitlab-sshd 使用远程过程调用 (RPC)。

一句话总结:使用gitlab-sshd可以替换虚拟机本机的ssh功能,从而实现不依赖虚拟机的sshd服务。

启用gitlab-sshd

  • 编辑gitlab.rb配置文件
# 启用gitlab_sshd服务
gitlab_sshd['enable'] = true
gitlab_sshd['listen_address'] = '[::]:2222'
# git url地址指向2222端口
gitlab_rails['gitlab_shell_ssh_port'] = 2222 
  • 试配置生效
gitlab-ctl reconfigure

测试

需要清理下本地的know_hosts文件,然后测试。

git clone ssh://[email protected]:2222/mr/123.git

在gitlab中使用gitlab-sshd替换ssh服务_第1张图片

你可能感兴趣的:(gitlab,gitlab,gitlab_sshd)