Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
gitlab-ce
Commits
6efa5dc0
Commit
6efa5dc0
authored
Mar 02, 2017
by
Rémy Coutable
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'patch-17' into 'master'
cleanup SSH key details Closes #28896 See merge request !9643
parents
034c6496
746ccb2f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
64 additions
and
29 deletions
+64
-29
doc/ssh/README.md
doc/ssh/README.md
+64
-29
No files found.
doc/ssh/README.md
View file @
6efa5dc0
...
@@ -13,7 +13,7 @@ read [this nice tutorial by DigitalOcean](https://www.digitalocean.com/community
...
@@ -13,7 +13,7 @@ read [this nice tutorial by DigitalOcean](https://www.digitalocean.com/community
## Locating an existing SSH key pair
## Locating an existing SSH key pair
Before generating a new SSH key check if your system already has one
Before generating a new SSH key
pair
check if your system already has one
at the default location by opening a shell, or Command Prompt on Windows,
at the default location by opening a shell, or Command Prompt on Windows,
and running the following command:
and running the following command:
...
@@ -23,43 +23,49 @@ and running the following command:
...
@@ -23,43 +23,49 @@ and running the following command:
type
%userprofile%
\.
ssh
\i
d_rsa.pub
type
%userprofile%
\.
ssh
\i
d_rsa.pub
```
```
**GNU/Linux / macOS / PowerShell:**
**G
it Bash on Windows / G
NU/Linux / macOS / PowerShell:**
```
bash
```
bash
cat
~/.ssh/id_rsa.pub
cat
~/.ssh/id_rsa.pub
```
```
If you see a string starting with
`ssh-rsa`
you already have an SSH key pair
If you see a string starting with
`ssh-rsa`
you already have an SSH key pair
and you can skip the
next step
**Generating a new SSH key pair**
and you can skip the
generate portion of the next section and skip to the copy
and continue onto
**Copying your public SSH key to the clipboard**
.
to clipboard step
.
If you don't see the string or would like to generate a SSH key pair with a
If you don't see the string or would like to generate a SSH key pair with a
custom name continue onto the next step.
custom name continue onto the next step.
>
**Note:**
Public SSH key may also be named as follows:
-
`id_dsa.pub`
-
`id_ecdsa.pub`
-
`id_ed25519.pub`
## Generating a new SSH key pair
## Generating a new SSH key pair
1.
To generate a new SSH key, use the following command:
1.
To generate a new SSH key
pair
, use the following command:
**GNU/Linux / macOS:**
**G
it Bash on Windows / G
NU/Linux / macOS:**
```bash
```bash
ssh-keygen -t rsa -C "
GitLab
" -b 4096
ssh-keygen -t rsa -C "
your.email@example.com
" -b 4096
```
```
**Windows:**
**Windows:**
On Windows you will need to
download
Alternatively on Windows you can
download
[PuttyGen](http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html)
[PuttyGen](http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html)
and follow
this [
documentation article][winputty] to generate a SSH key pair.
and follow
[this
documentation article][winputty] to generate a SSH key pair.
1.
Next, you will be prompted to input a file path to save your key pair to.
1.
Next, you will be prompted to input a file path to save your
SSH
key pair to.
If you don't already have an SSH key pair use the suggested path by pressing
If you don't already have an SSH key pair use the suggested path by pressing
enter. Using the suggested path will allow your SSH client
enter. Using the suggested path will
normally
allow your SSH client
to automatically use the key pair with no additional configuration.
to automatically use the
SSH
key pair with no additional configuration.
If you already have a key pair with the suggested file path, you will need
If you already have a
SSH
key pair with the suggested file path, you will need
to input a new file path and declare what host this key pair will be used
to input a new file path and declare what host this
SSH
key pair will be used
for in your `.ssh/config` file, see
**Working with non-default SSH key pair paths**
for in your `.ssh/config` file, see
[**Working with non-default SSH key pair paths**](#working-with-non-default-ssh-key-pair-paths)
for more information.
for more information.
1.
Once you have input a file path you will be prompted to input a password to
1.
Once you have input a file path you will be prompted to input a password to
...
@@ -68,12 +74,12 @@ custom name continue onto the next step.
...
@@ -68,12 +74,12 @@ custom name continue onto the next step.
pressing enter.
pressing enter.
>**Note:**
>**Note:**
If you want to change the password of your key, you can use `ssh-keygen -p <keyname>`.
If you want to change the password of your SSH key pair, you can use
`ssh-keygen -p <keyname>`.
1.
The next step is to copy the public key as we will need it afterwards.
1.
The next step is to copy the public
SSH
key as we will need it afterwards.
To copy your public key to the clipboard, use the appropriate code for your
To copy your public SSH key to the clipboard, use the appropriate code below:
operating system below:
**macOS:**
**macOS:**
...
@@ -93,7 +99,7 @@ custom name continue onto the next step.
...
@@ -93,7 +99,7 @@ custom name continue onto the next step.
type %userprofile%\.ssh\id_rsa.pub | clip
type %userprofile%\.ssh\id_rsa.pub | clip
```
```
**Windows PowerShell:**
**
Git Bash on Windows /
Windows PowerShell:**
```bash
```bash
cat ~/.ssh/id_rsa.pub | clip
cat ~/.ssh/id_rsa.pub | clip
...
@@ -101,7 +107,7 @@ custom name continue onto the next step.
...
@@ -101,7 +107,7 @@ custom name continue onto the next step.
1.
The final step is to add your public SSH key to GitLab.
1.
The final step is to add your public SSH key to GitLab.
Navigate to the 'SSH Keys' tab in you 'Profile Settings'.
Navigate to the 'SSH Keys' tab in you
r
'Profile Settings'.
Paste your key in the 'Key' section and give it a relevant 'Title'.
Paste your key in the 'Key' section and give it a relevant 'Title'.
Use an identifiable title like 'Work Laptop - Windows 7' or
Use an identifiable title like 'Work Laptop - Windows 7' or
'Home MacBook Pro 15'.
'Home MacBook Pro 15'.
...
@@ -109,14 +115,30 @@ custom name continue onto the next step.
...
@@ -109,14 +115,30 @@ custom name continue onto the next step.
If you manually copied your public SSH key make sure you copied the entire
If you manually copied your public SSH key make sure you copied the entire
key starting with `ssh-rsa` and ending with your email.
key starting with `ssh-rsa` and ending with your email.
1.
Optionally you can test your setup by running
`ssh -T git@example.com`
(replacing
`example.com`
with your GitLab domain) and verifying that you
receive a
`Welcome to GitLab`
message.
## Working with non-default SSH key pair paths
## Working with non-default SSH key pair paths
If you used a non-default file path for your GitLab SSH key pair,
If you used a non-default file path for your GitLab SSH key pair,
you must configure your SSH client to find your GitLab SSH private key
you must configure your SSH client to find your GitLab private SSH key
for connections to your GitLab server (perhaps gitlab.com).
for connections to your GitLab server (perhaps
`gitlab.com`
).
For your current terminal session you can do so using the following commands
(replacing
`other_id_rsa`
with your private SSH key):
**Git Bash on Windows / GNU/Linux / macOS:**
```
bash
eval
$(
ssh-agent
-s
)
ssh-add ~/.ssh/other_id_rsa
```
For OpenSSH clients this is configured in the
`~/.ssh/config`
file.
To retain these settings you'll need to save them to a configuration file.
Below are two example host configurations using their own key:
For OpenSSH clients this is configured in the
`~/.ssh/config`
file for some
operating systems.
Below are two example host configurations using their own SSH key:
```
```
# GitLab.com server
# GitLab.com server
...
@@ -140,8 +162,8 @@ That's why it needs to uniquely map to a single user.
...
@@ -140,8 +162,8 @@ That's why it needs to uniquely map to a single user.
## Deploy keys
## Deploy keys
Deploy keys allow read-only
access to multiple projects with a single SSH
Deploy keys allow read-only
or read-write (if enabled) access to one or
key
.
multiple projects with a single SSH key pair
.
This is really useful for cloning repositories to your Continuous
This is really useful for cloning repositories to your Continuous
Integration (CI) server. By using deploy keys, you don't have to setup a
Integration (CI) server. By using deploy keys, you don't have to setup a
...
@@ -150,7 +172,8 @@ dummy user account.
...
@@ -150,7 +172,8 @@ dummy user account.
If you are a project master or owner, you can add a deploy key in the
If you are a project master or owner, you can add a deploy key in the
project settings under the section 'Deploy Keys'. Press the 'New Deploy
project settings under the section 'Deploy Keys'. Press the 'New Deploy
Key' button and upload a public SSH key. After this, the machine that uses
Key' button and upload a public SSH key. After this, the machine that uses
the corresponding private key has read-only access to the project.
the corresponding private SSH key has read-only or read-write (if enabled)
access to the project.
You can't add the same deploy key twice with the 'New Deploy Key' option.
You can't add the same deploy key twice with the 'New Deploy Key' option.
If you want to add the same key to another project, please enable it in the
If you want to add the same key to another project, please enable it in the
...
@@ -166,6 +189,18 @@ project.
...
@@ -166,6 +189,18 @@ project.
### Eclipse
### Eclipse
How to add your
ssh
key to Eclipse: https://wiki.eclipse.org/EGit/User_Guide#Eclipse_SSH_Configuration
How to add your
SSH
key to Eclipse: https://wiki.eclipse.org/EGit/User_Guide#Eclipse_SSH_Configuration
[
winputty
]:
https://the.earth.li/~sgtatham/putty/0.67/htmldoc/Chapter8.html#pubkey-puttygen
[
winputty
]:
https://the.earth.li/~sgtatham/putty/0.67/htmldoc/Chapter8.html#pubkey-puttygen
## Troubleshooting
If on Git clone you are prompted for a password like
`git@gitlab.com's password:`
something is wrong with your SSH setup.
-
Ensure that you generated your SSH key pair correctly and added the public SSH
key to your GitLab profile
-
Try manually registering your private SSH key using
`ssh-agent`
as documented
earlier in this document
-
Try to debug the connection by running
`ssh -Tv git@example.com`
(replacing
`example.com`
with your GitLab domain)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment