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

Update Berlin.md #509

Merged
merged 1 commit into from
Jul 31, 2024
Merged
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
17 changes: 14 additions & 3 deletions wiki/Compute_Center/Berlin.md
Original file line number Diff line number Diff line change
Expand Up @@ -238,10 +238,21 @@ dashboard to get information about the complete mount path. Under the

You can mount the share with the following command:

sudo mount -o vers=4.0 manila-prod.isi.denbi.bihealth.org:/ifs/denbi/prod/share-YOUR_UIID /mnt/
sudo mount -t nfs manila-prod.isi.denbi.bihealth.org:/ifs/denbi/prod/share-YOUR_UIID /mnt/

Alternatively you can add the mount path to the "/etc/fstab". Make sure that
you use NFS version 4.0. In order to use NFS version 4.0, you might need to set the host's DNS domain name:
If you get an error saying `you might need a /sbin/mount.<type> helper program`, then you might need to install the `nfs-common` package:

sudo apt install nfs-common

At the moment, only NFS version 3 is supported. You can try to run the following to find out which NFS versions are supported:

```
$ rpcinfo -p manila-prod.isi.denbi.bihealth.org | grep nfs
100003 3 tcp 2049 nfs
100003 3 udp 2049 nfs
```

Alternatively you can add the mount path to your `/etc/fstab`. You might also need to set the host's DNS domain name:

```
cat /etc/idmapd.conf
Expand Down
Loading