Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Storage - HA-NAS - Update - Mounting HA-NAS via NFS share #3484

Closed
wants to merge 18 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions pages/cloud/storage/nas_nfs/guide.de-de.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ In dieser Anleitung erfahren Sie, wie Sie auf den gängigsten Distributionen ein

### Linux

Kompatibilität: Debian & Ubuntu
Kompatibilität: Debian & Ubuntu

Voraussetzungen zum Mounten einer NFS-Freigabe unter Linux:

Expand All @@ -35,7 +35,7 @@ Verwenden Sie anschließend folgenden Mount-Befehl:


```sh
mount -t nfs -o _netdev,mountproto=tcp IP_NAS:/NFS_PATH /MOUNTING_FOLDER
mount -t nfs IP_NAS:/NFS_PATH /MOUNTING_FOLDER
```

|Argument|Beschreibung|
Expand All @@ -48,16 +48,16 @@ mount -t nfs -o _netdev,mountproto=tcp IP_NAS:/NFS_PATH /MOUNTING_FOLDER
> [!primary]
>
> Um den NAS-Mount beim Start Ihrer Distribution zu automatisieren, fügen Sie die folgende Zeile zur Datei /etc/fstab hinzu:
>
>
> ```
> IP_NAS:/NFS_PATH /MOUNTING_FOLDER nfs rw,_netdev,mountproto=tcp 0 0
> IP_NAS:/NFS_PATH /MOUNTING_FOLDER nfs rw 0 0
> ```
>

*Beispiel:*

```sh
mount -t nfs -o _netdev,mountproto=tcp 10.16.XXX.YYY:zpool-999888/PartitionName /media/NasHA -v
mount -t nfs 10.16.XXX.YYY:zpool-999888/PartitionName /media/NasHA -v
```

|Argument|Beschreibung|
Expand Down Expand Up @@ -88,7 +88,7 @@ Starten Sie anschließend den Dienst `rpcbind` mit folgendem Befehl neu:
Verwenden Sie anschließend folgenden Mount-Befehl:

```sh
mount -t nfs -o _netdev,mountproto=tcp IP_NAS:/NFS_PATH /MOUNTING_FOLDER
mount -t nfs IP_NAS:/NFS_PATH /MOUNTING_FOLDER
```

|Argument|Beschreibung|
Expand All @@ -101,9 +101,9 @@ mount -t nfs -o _netdev,mountproto=tcp IP_NAS:/NFS_PATH /MOUNTING_FOLDER
> [!primary]
>
> Um den NAS-Mount beim Start Ihrer Distribution zu automatisieren, fügen Sie die folgende Zeile zur Datei /etc/fstab hinzu:
>
>
> ```
> IP_NAS:/NFS_PATH /MOUNTING_FOLDER nfs rw,_netdev,mountproto=tcp 0 0
> IP_NAS:/NFS_PATH /MOUNTING_FOLDER nfs rw 0 0
> ```
>

Expand Down Expand Up @@ -142,13 +142,13 @@ mount -t nfs IP_NAS:/NFS_PATH /MOUNTING_FOLDER
> [!primary]
>
> Um den NAS-Mount beim Start Ihrer Distribution zu automatisieren, fügen Sie die folgende Zeile zur Datei /etc/fstab hinzu:
>
>
> ```
> IP_NAS:/NFS_PATH /MOUNTING_FOLDER nfs rw 0 0
> ```
>
>
> Fügen Sie anschließend mit folgendem Befehl den Dienst “nfsmount" zum Start Ihres Servers hinzu:
>
>
> ```
> rc-update add nfsmount default
> ```
Expand Down Expand Up @@ -183,7 +183,7 @@ Voraussetzungen zum Mounten einer NFS-Freigabe unter Proxmox:
> [!primary]
>
> Um den NAS-Mount beim Start Ihrer Distribution zu automatisieren, fügen Sie die folgende Zeile zur Datei /etc/fstab hinzu:
>
>
> ```
> IP_NAS:/CNFS_PATH /MOUNTING_FOLDER nfs rw 0 0
> ```
Expand All @@ -194,7 +194,7 @@ Voraussetzungen zum Mounten einer NFS-Freigabe unter Proxmox:
Voraussetzungen zum Mounten einer NFS-Freigabe unter ESXi:

- Sie können via vSphere auf Ihren Server zugreifen.
- Sie befinden sich im Verwaltungspanel im Tab `Inventory`{.action}.
- Sie befinden sich im Verwaltungspanel im Tab `Inventory`{.action}.


![Konfiguration](images/esxi_1.jpg){.thumbnail}
Expand Down Expand Up @@ -227,8 +227,8 @@ Füllen Sie das nun angezeigte Formular aus:
> [!alert]
>
> Der NFS-Benutzer ist `root`-Benutzer. Rechteänderungen mit diesem Benutzer können daher Konflikte mit vorhandenen CIFS/SMB-Rechten verursachen.
>
>

## Weiterführende Informationen

Für den Austausch mit unserer Community gehen Sie auf <https://community.ovh.com/en/>.
Für den Austausch mit unserer Community gehen Sie auf <https://community.ovh.com/en/>.
42 changes: 21 additions & 21 deletions pages/cloud/storage/nas_nfs/guide.en-ca.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ This guide allows you to mount NFS on the most common distributions. To mount an

### Linux

Compatibility: Debian & Ubuntu
Compatibility: Debian & Ubuntu

To mount an NFS share on Linux, you must:

Expand All @@ -35,29 +35,29 @@ Then use the following mount command:


```sh
mount -t nfs -o _netdev,mountproto=tcp IP_NAS:/NFS_PATH /MOUNTING_FOLDER
mount -t nfs IP_NAS:/NFS_PATH /MOUNTING_FOLDER
```

|Argument|Description|
|---|---|
|IP_NAS|Corresponds to NAS name or IP|
|/NFS_PATH|Path to NFS server for sharing (Ex: "nas-000YY/partition")|
|/NFS_PATH|Path to NFS server for sharing (Ex: `/zpool-000YY/partition`)|
|MOUNTING_FOLDER|Corresponds to the folder where you will mount your NFS share on your server|


> [!primary]
>
> In order to automate the NAS mount when your distribution starts up, add the following line to the /etc/fstab file:
>
>
> ```
> IP_NAS:/NFS_PATH /MOUNTING_FOLDER nfs rw,_netdev,mountproto=tcp 0 0
> IP_NAS:/NFS_PATH /MOUNTING_FOLDER nfs rw 0 0
> ```
>

*For example:*

```sh
mount -t nfs -o _netdev,mountproto=tcp 10.16.XXX.YYY:zpool-999888/PartitionName /media/NasHA -v
mount -t nfs 10.16.XXX.YYY:zpool-999888/PartitionName /media/NasHA -v
```

|Argument|Description|
Expand All @@ -66,7 +66,7 @@ mount -t nfs -o _netdev,mountproto=tcp 10.16.XXX.YYY:zpool-999888/PartitionName
|/NFS_PATH|zpool-999888/PartitionName|
|MOUNTING_FOLDER|/media/NasHA -v|

### CentOS
### CentOS

Compatibility: CentOS

Expand All @@ -90,22 +90,22 @@ Then restart the `rpcbind` service with the following command:
Then use the following mount command:

```sh
mount -t nfs -o _netdev,mountproto=tcp IP_NAS:/NFS_PATH /MOUNTING_FOLDER
mount -t nfs IP_NAS:/NFS_PATH /MOUNTING_FOLDER
```

|Argument|Description|
|---|---|
|IP_NAS|Corresponds to NAS name or IP|
|/NFS_PATH|Path to NFS server for sharing (Ex: "nas-000YY/partition")|
|/NFS_PATH|Path to NFS server for sharing (Ex: `/zpool-000YY/partition`)|
|MOUNTING_FOLDER|Corresponds to the folder where you will mount your NFS share on your server|


> [!primary]
>
> In order to automate the NAS mount when your distribution starts up, add the following line to the /etc/fstab file:
>
>
> ```
> IP_NAS:/NFS_PATH /MOUNTING_FOLDER nfs rw,_netdev,mountproto=tcp 0 0
> IP_NAS:/NFS_PATH /MOUNTING_FOLDER nfs rw 0 0
> ```
>

Expand Down Expand Up @@ -137,20 +137,20 @@ mount -t nfs IP_NAS:/NFS_PATH /MOUNTING_FOLDER
|Argument|Description|
|---|---|
|IP_NAS|Corresponds to NAS name or IP|
|/NFS_PATH|Path to NFS server for sharing (Ex: "nas-000YY/partition")|
|/NFS_PATH|Path to NFS server for sharing (Ex: `/zpool-000YY/partition`)|
|MOUNTING_FOLDER|Corresponds to the folder where you will mount your NFS share on your server|


> [!primary]
>
> In order to automate the NAS mount when your distribution starts up, add the following line to the /etc/fstab file:
>
>
> ```
> IP_NAS:/NFS_PATH /MOUNTING_FOLDER nfs rw 0 0
> ```
>
> Then put the "nfsmount" service to the server starting up, with the following command.
>
>
> Then put the "nfsmount" service to the server starting up, with the following command.
>
> ```
> rc-update add nfsmount default
> ```
Expand Down Expand Up @@ -185,7 +185,7 @@ Configuration
> [!primary]
>
> In order to automate the mounting of the NAS when your distribution starts up, add the following line to the /etc/fstab file:
>
>
> ```
> IP_NAS:/NFS_PATH /MOUNTING_FOLDER nfs rw 0 0
> ```
Expand All @@ -196,7 +196,7 @@ Configuration
To mount an NFS share under ESXI, you must have:

- Server access via vSphere.
- In the control panel, click on `Inventory`{.action}:
- In the control panel, click on `Inventory`{.action}:


Configuration
Expand All @@ -219,7 +219,7 @@ Configuration
|Argument|Description|
|---|---|
|server:|Corresponds to NAS name or IP|
|Folder|Path to NFS server for sharing (Ex: "/nas-000YY/partition")|
|Folder|Path to NFS server for sharing (Ex: `/zpool-000YY/partition`)|
|Datastore|This is the name you want to give to the datastore|


Expand All @@ -230,8 +230,8 @@ Configuration
> [!alert]
>
> The NFS user is `root`, rights changes with this user can generate conflicts with existing CIFS/SMB rights.
>
>

## Go further

Join our community of users on <https://community.ovh.com/en/>.
Join our community of users on <https://community.ovh.com/en/>.
Loading