loading...empty;done;/configure-external-nfs-server/:-uriExternal NFS Server Configuration | iNET.elastic Dev Docs

External NFS Server Configuration

external storage server

The platform allows sharing data between servers (where the files are physically located) and clients (gain access to the remote data as if it was kept locally). The configurations required to set up a share varied based on the following condition:

  • both instances are inside of the same PaaS account - either export data from storage or mount data on the clients (the platform automatically handles the second operation)

  • one instance is outside of the platform - export data from external storage (described in this guide) and mount external data on the clients

Below, we’ll consider the configurations required to export data from the platform Shared Storage Container to the external instance. The described flow is suitable for any NFS-based storage server.

1. First of all, to share data over the Internet, it’s required to attach a public IP address to your server:

shared storage with public IP

2. Next, you need to declare the list of directories you’d like to share within the corresponding etc/exports file. In the platform, it can be easily accessed with the Configuration button in the Exports section of the built-in Configuration File Manager.

Here, the following format should be used:

1
{directory} {server}([option],[option],..)

exports configuration file

where:

  • {directory} - path to the folder (relative to the Root folder) that should be exported

  • {NFS_client} - custom domain name or public IP address of the client node (i.e where the exported files should be mounted)

    Note: In case your instance does not have an external address attached, you can alternatively use the IP of the appropriate host. It could be obtained by connecting to the container via SSH and executing the following command:

    1
    
    curl ifconfig.co
    

    storage host IP

    Be aware that such flow is highly insecure and should not be used for production purposes, as it will make your shared data available for any container on the same host.

  • [option] - some additional parameters to describe the access permissions, where the main ones are:

    • async - allows NFS clients to receive a response from the storage as soon as a request on adding content is processed. At the moment, the data is already in the cache but not actually written to storage yet. Compared to the opposite sync option, it gives a performance boost but leaves a slight risk of data loss (if stopped/crashed while still holding unwritten data in cache)
    • ro (or rw) - defines read-only (read & write) permissions to make the client node available to view (view and edit) the shared data
    • no_root_squash - gives root user on a client’s server the same level of access as a root user on a storage container
    • no_subtree_check - sets accessibility for the whole directory (better performance but restricts providing individual rules for files inside)
Tip: For additional security, you can configure the corresponding etc/hosts.allow and etc/hosts.deny files to manage a list of hosts that NFS server can work with.

3. When working with the Shared Storage Auto-Cluster based on the GlusterFS, take into consideration that only /data folder is replicated between instances, so the exported directory should be located inside.

Also, an additional fsid option should be obligatory added to the export configuration string. For example, the value of this parameter can be randomly generated with the next command:

1
cat /proc/sys/kernel/random/uuid

generate random fsid

As a result, the export string would be similar to the following one:

export configs for GlusterFS storage

Don’t forget to Save the changes you’ve made.

4. In order to apply new export settings, the corresponding exportfs command should be used (e.g. via Web SSH):

1
exportfs -ra

apply new export settings

5. Next, you need to open the NFS server ports (111, 2049, and 20048) for the NFS client IP address (the one used in the second step). Navigate to the storage environment Settings > Firewall section to add required rules via intuitive UI:

configure firewall rules via UI

Tip: This can be done through the console as well:

1
2
iptables -I INPUT -p tcp -m multiport --dports 111,2049,20048 -s {NFS_client} -j ACCEPT
iptables -I INPUT -p udp -m multiport --dports 111,2049,20048 -s {NFS_client} -j ACCEPT

configure iptables rules via SSH

6. When granting the RW rights, ensure that the same users have equal access permissions to the shared folder on both NFS client and server. For example, different stacks can use different users by default (e.g. root and iNET.elastic).

So, if needed, execute the following command on your storage server to adjust the rights:

1
chown {uid}:{gid} {path}

Here:

  • {uid} - user name or ID, which can be found in the /etc/passwd file of your platform container
  • {gid} - group name or identifier, that is shown within the /etc/group file of your node
  • {path} - path to the directory you’d like to change the permissions for

change folder access rights

That’s all! Your data storage server is ready, so you can return to the client instance and start mounting.

What’s next?