You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ro...@apache.org on 2018/04/19 18:44:13 UTC

[cloudstack-docs-install] branch master updated: make sure we use the same nfs paths. /primary vs /mnt/primary (#27)

This is an automated email from the ASF dual-hosted git repository.

rohit pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cloudstack-docs-install.git


The following commit(s) were added to refs/heads/master by this push:
     new 92b75fa  make sure we use the same nfs paths. /primary vs /mnt/primary  (#27)
92b75fa is described below

commit 92b75fa5e5c6b0ba1cc80598e8ae689f5d682e4d
Author: Bram <gi...@bugoff.be>
AuthorDate: Thu Apr 19 20:44:11 2018 +0200

    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
---
 source/management-server/_nfs.rst | 14 ++++++++++----
 1 file changed, 10 insertions(+), 4 deletions(-)

diff --git a/source/management-server/_nfs.rst b/source/management-server/_nfs.rst
index 6a42925..afc491e 100644
--- a/source/management-server/_nfs.rst
+++ b/source/management-server/_nfs.rst
@@ -124,6 +124,12 @@ operating system version.
 
       yum install nfs-utils
 
+   On Debian/Ubuntu systems, use:
+
+   .. sourcecode:: bash
+      
+      # apt-get install nfs-kernel-server
+
 #. On the Management Server host, create two directories that you will
    use for primary and secondary storage. For example:
 
@@ -242,9 +248,9 @@ operating system version.
 
       .. sourcecode:: bash
 
-         mkdir /primary
-         mount -t nfs <management-server-name>:/export/primary
+         mkdir /mnt/primary
+         mount -t nfs <management-server-name>:/export/primary /mnt/primary
          umount /primary
          mkdir /secondary
-         mount -t nfs <management-server-name>:/export/secondary
-         umount /secondary
+         mount -t nfs <management-server-name>:/export/secondary /mnt/secondary
+         umount /mnt/secondary

-- 
To stop receiving notification emails like this one, please contact
rohit@apache.org.