Open joschrew opened 2 years ago
Set up instructions for NFS
sudo apt install nfs-kernel-server
mkdir /home/cloud/nfs-shares/ocrd-webapi
/etc/exports
:
/home/cloud/nfs-shares/ocrd-webapi 10.254.1.4/24(rw,sync,no_subtree_check) 10.254.1.29/24(rw,sync,no_subtree_check)
sudo systemctl restart nfs-kernel-server
sudo apt install nfs-common
mkdir ~/nfs-ocrd-webapi
sudo mount -t nfs4 <nfs-server-ip-adress>:/home/<user>/nfs-shares/ocrd-webapi /home/<user>/nfs-ocrd-webapi
Does not make sense for me yet to use NFS because all processors will run at one machine. Is it possible to get an NFS Share from gwdg?
You set up all processors on one machine for testing, but in a real life, they run on different machines. That's why NFS is needed. You can set up your own NFS or simply get one from GWDG, it doesn't matter.
NFS should be used to exchange data between processors. Goal of this ticket is to create an NFS-share on one of my vm's and use it as workspace directory for the webapi and for the processing servers to access the workspaces.