Commit e1a3e2cc authored by Chenjerai Katanda's avatar Chenjerai Katanda

Split instructions for client and host

parent 2678506a
......@@ -12,6 +12,10 @@ and Corosync](http://clusterlabs.org/) for highly available NFS in production.
Below are instructions for setting up an application node(client) in an HA cluster
to read from and write to a central NFS server(host).
### NFS Server Setup
> Follow the instructions below to setup and confire your NFS server.
#### Step 1 - Install NFS Server on Host
Installing the nfs-kernel-server package allows you to share directories with the clients running the GitLab application.
......@@ -21,16 +25,7 @@ $ apt-get update
$ apt-get install nfs-kernel-server
```
#### Step 2 - Install NFS Common on Client
The nfs-common provides NFS functionality without installing server components which we don't need running on the application nodes.
```
$ apt-get update
$ apt-get install nfs-common
```
#### Step 3 - Export Host's Home Directory to Client
#### Step 2 - Export Host's Home Directory to Client
In this setup we will share the home directory on the host with the client. Edit the exports file as below to share the host's home directory with the client. If you have multiple clients running GitLab you must enter the client IP addresses in line in the `/etc/exports` file.
......@@ -42,34 +37,61 @@ In this setup we will share the home directory on the host with the client. Edit
/home <client-ip-address>(rw,sync,no_root_squash,no_subtree_check) <client-2-ip-address>(rw,sync,no_root_squash,no_subtree_check) <client-3-ip-address>(rw,sync,no_root_squash,no_subtree_check)
```
Restart the NFS server after making changes to the `exports` file for the changes to take effect.
Restart the NFS server after making changes to the `exports` file for the changes
to take effect.
```
$ systemctl restart nfs-kernel-server
```
Check that traffic from the client is allowed by the firewall on the host by running the command: `sudo ufw status`. If blocked you can allow traffic from between a specific client with the command below.
Check that traffic from the client is allowed by the firewall on the host by running
the command: `sudo ufw status`. If blocked you can allow traffic from between a specific
client with the command below.
```
$ sudo ufw allow from <client-ip-address> to any port nfs
```
#### Step 4 - Create Mount Points on Client
Create a directroy on the client that we can mount the shared directory from the host. Please note that if your mount point directory contains any files they will be hidden once the remote shares are mounted. An empty/new directory on the client is recommended for this purpose.
### Client/ GitLab application node Setup
> Follow the instructions below to connect any GitLab rails application node running
inside your HA environment to the NFS server configured above.
#### Step 1 - Install NFS Common on Client
The nfs-common provides NFS functionality without installing server components which
we don't need running on the application nodes.
```
$ apt-get update
$ apt-get install nfs-common
```
#### Step 2 - Create Mount Points on Client
Create a directroy on the client that we can mount the shared directory from the host.
Please note that if your mount point directory contains any files they will be hidden
once the remote shares are mounted. An empty/new directory on the client is recommended
for this purpose.
```
$ mkdir -p /nfs/home
```
Confirm that the mount point works by mounting it on the client and checking that it is mounted with the command below:
Confirm that the mount point works by mounting it on the client and checking that
it is mounted with the command below:
```
$ mount <host_ip_address>:/home
$ df -h
```
#### Step 6 - Setup Automatic Mounts on Boot
#### Step 3 - Setup Automatic Mounts on Boot
Edit /etc/fstab on client as below to mount the remote shares automatically at boot. Note that GitLab requires advisory file locking, which is only supported natively in NFS version 4. NFSv3 also supports locking as long as Linux Kernel 2.6.5+ is used. We recommend using version 4 and do not specifically test NFSv3.
Edit /etc/fstab on client as below to mount the remote shares automatically at boot.
Note that GitLab requires advisory file locking, which is only supported natively in
NFS version 4. NFSv3 also supports locking as long as Linux Kernel 2.6.5+ is used.
We recommend using version 4 and do not specifically test NFSv3.
```
#/etc/fstab
......@@ -77,9 +99,13 @@ Edit /etc/fstab on client as below to mount the remote shares automatically at b
```
Reboot the client and confirm that the mount point is mounted automatically.
#### Step 7 - Setup Gitlab to Use NFS mounts
#### Step 4 - Setup Gitlab to Use NFS mounts
When using the default Omnibus configuration you will need to share 5 data locations between all GitLab cluster nodes. No other locations should be shared. Changing the default file locations in `gitlab.rb` on the client allows you to have one main mount point and have all the required locations as subdirectories to use the NFS mount for git-data.
When using the default Omnibus configuration you will need to share 5 data locations
between all GitLab cluster nodes. No other locations should be shared. Changing the
default file locations in `gitlab.rb` on the client allows you to have one main mount
point and have all the required locations as subdirectories to use the NFS mount for
git-data.
```
git_data_dirs({"default" => "/nfs/home/var/opt/gitlab-data/git-data"})
......
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