Commit ce5d428c authored by Nick Thomas's avatar Nick Thomas

Merge branch 'update_geo_setup_guide_to_not_delete_keys' into 'master'

Update Geo setup guide to not delete private keys ever, only replace them

See merge request gitlab-org/gitlab-ee!4381
parents 2516ae71 6f4cf317
...@@ -109,7 +109,7 @@ keys must be manually replicated to the secondary node. ...@@ -109,7 +109,7 @@ keys must be manually replicated to the secondary node.
1. Make a backup of any existing SSH host keys: 1. Make a backup of any existing SSH host keys:
```bash ```bash
find /etc/ssh -iname ssh_host_* -exec mv {} {}.backup.`date +%F` \; find /etc/ssh -iname ssh_host_* -exec cp {} {}.backup.`date +%F` \;
``` ```
1. SSH into the **primary** node, and execute the command below: 1. SSH into the **primary** node, and execute the command below:
...@@ -118,7 +118,7 @@ keys must be manually replicated to the secondary node. ...@@ -118,7 +118,7 @@ keys must be manually replicated to the secondary node.
sudo find /etc/ssh -iname ssh_host_* -not -iname '*.pub' sudo find /etc/ssh -iname ssh_host_* -not -iname '*.pub'
``` ```
1. For each file in that list copy the file from the primary node to 1. For each file in that list replace the file from the primary node to
the **same** location on your **secondary** node. the **same** location on your **secondary** node.
1. On your **secondary** node, ensure the file permissions are correct: 1. On your **secondary** node, ensure the file permissions are correct:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment