Skip to content
This repository was archived by the owner on Apr 24, 2024. It is now read-only.

Commit 92b75fa

Browse files
bugoffyadvr
authored andcommitted
make sure we use the same nfs paths. /primary vs /mnt/primary (#27)
* make sure we use the same nfs paths. /primary vs /mnt/primary on the next page * provide mountpath when mounting nfs, install nfs-kernel-server when using ubuntu
1 parent 3ae5d3e commit 92b75fa

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

source/management-server/_nfs.rst

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,12 @@ operating system version.
124124

125125
yum install nfs-utils
126126

127+
On Debian/Ubuntu systems, use:
128+
129+
.. sourcecode:: bash
130+
131+
# apt-get install nfs-kernel-server
132+
127133
#. On the Management Server host, create two directories that you will
128134
use for primary and secondary storage. For example:
129135

@@ -242,9 +248,9 @@ operating system version.
242248

243249
.. sourcecode:: bash
244250

245-
mkdir /primary
246-
mount -t nfs <management-server-name>:/export/primary
251+
mkdir /mnt/primary
252+
mount -t nfs <management-server-name>:/export/primary /mnt/primary
247253
umount /primary
248254
mkdir /secondary
249-
mount -t nfs <management-server-name>:/export/secondary
250-
umount /secondary
255+
mount -t nfs <management-server-name>:/export/secondary /mnt/secondary
256+
umount /mnt/secondary

0 commit comments

Comments
 (0)