diff options
author | Nick Thomas <nick@gitlab.com> | 2017-08-30 12:00:39 +0100 |
---|---|---|
committer | Nick Thomas <nick@gitlab.com> | 2017-09-04 18:16:31 +0100 |
commit | 48115be509ce00120d0609f5f18a5bc3804bb21f (patch) | |
tree | 6ead152e6608e1c3d30de6469efc4b05dd090e0b /doc/ssh | |
parent | 25a443d65220cb76fab2c8123eca17f30c461a89 (diff) | |
download | gitlab-ce-48115be509ce00120d0609f5f18a5bc3804bb21f.tar.gz |
Add a system check for the git user's custom SSH configuration
Diffstat (limited to 'doc/ssh')
-rw-r--r-- | doc/ssh/README.md | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/doc/ssh/README.md b/doc/ssh/README.md index cf28f1a2eca..793de9d777c 100644 --- a/doc/ssh/README.md +++ b/doc/ssh/README.md @@ -193,6 +193,38 @@ How to add your SSH key to Eclipse: https://wiki.eclipse.org/EGit/User_Guide#Ecl [winputty]: https://the.earth.li/~sgtatham/putty/0.67/htmldoc/Chapter8.html#pubkey-puttygen +## SSH on the GitLab server + +GitLab integrates with the system-installed SSH daemon, designating a user +(typically named `git`) through which all access requests are handled. Users +connecting to the GitLab server over SSH are identified by their SSH key instead +of their username. + +SSH *client* operations performed on the GitLab server wil be executed as this +user. Although it is possible to modify the SSH configuration for this user to, +e.g., provide a private SSH key to authenticate these requests by, this practice +is **not supported** and is strongly discouraged as it presents significant +security risks. + +The GitLab check process includes a check for this condition, and will direct you +to this section if your server is configured like this, e.g.: + +``` +$ gitlab-rake gitlab:check +# ... +Git user has default SSH configuration? ... no + Try fixing it: + mkdir ~/gitlab-check-backup-1504540051 + sudo mv /var/lib/git/.ssh/id_rsa ~/gitlab-check-backup-1504540051 + sudo mv /var/lib/git/.ssh/id_rsa.pub ~/gitlab-check-backup-1504540051 + For more information see: + doc/ssh/README.md in section "SSH on the GitLab server" + Please fix the error above and rerun the checks. +``` + +Remove the custom configuration as soon as you're able to. These customizations +are *explicitly not supported* and may stop working at any time. + ## Troubleshooting If on Git clone you are prompted for a password like `git@gitlab.com's password:` |