Available in Classic
You can add a large-scale NAS storage to Cloud Hadoop cluster nodes.
For more information about NAS, see the NAS user guide.
To mount NAS on the cluster server:
1. Create NAS volume
To create a NAS volume:
- In the Classic environment on the NAVER Cloud Platform console, navigate to
> Services > Storage > NAS > NAS Volume. - Click the [Create NAS volume].
- Configure the NAS volume settings and create the NAS volume.
- For more information on creating NAS volumes, see the Create NAS volume (Classic) guide.
- You can set ACL (Network Access Control) during the NFS access control configuration step when creating a NAS Volume.
- In the settings popup, select a cluster server and use the < > buttons to move it. To add a server from another NAVER Cloud Platform account to a NAS volume, enter a private IP address in the Custom Server IP field and click [Next].

2. Register NAS Volume ACL
Before mounting a NAS Volume, you must first add ACL settings for the relevant cluster.
ACL can be set when creating a NAS Volume or through the NFS access control menu in the console after creating the NAS.
- When creating a NAS volume
select a cluster server in the NFS access control settings and move it using the < > buttons, or enter a private IP address to complete the ACL (network access control) configuration. See 1. Create NAS volume.
For more information on creating NAS volumes, see the Create NAS volume (Classic) guide.
- If you already have a NAS Volume
To set up ACL if the NAS Volume has already been created:
- In the Classic environment on the NAVER Cloud Platform console, navigate to
> Services > Storage > NAS > NAS Volume. - From the NAS Volume list, select the NAS Volume for which you want to set ACL, then click [Volume settings].
- Click NFS access control.
- In the settings popup, select the cluster server, move it with the < > buttons, and then click [OK].
- To add a server from another NAVER Cloud Platform account to a NAS volume, enter a private IP address in the Custom Server IP field at the bottom and click [OK].

- To add a server from another NAVER Cloud Platform account to a NAS volume, enter a private IP address in the Custom Server IP field at the bottom and click [OK].
3. Mount NAS
This guide applies to the basic environment of Cloud Hadoop. (CentOS 6.x or later)
For more information about NAS, see the NAS user guide.
-
After launching PuTTY, use SSH to access the cluster server where you want to mount the NAS. (See the Connect cluster nodes via SSH guide.)
-
Use the
sudo su -command to convert to the root account.$ sudo su - -
Refer to the following example to install NFS-related packages, run the RPC daemon, and create a mount point.
$ yum -y install nfs-utils $ systemctl start rpcbind.service $ mkdir /mnt/nfs_diryum -y install nfs-utils: Installs NFS-related packages (basic).systemctl start rpcbind.service: Runs the RPC daemon.mkdir /mnt/nfs_dir: Creates a mount point (directory) called/mnt/nfs_dirusing the mkdir command.
-
Mount using the volume name received from the NAS console and the mount point created.
$ mount -t nfs {Mount info} {Mount point} $ mount -t nfs 10.250.53.85:/n2536315_test /mnt/nfs_dir -
Use the
dfcommand to check that the NAS has been mounted correctly.$ df
To automatically mount the NAS when the server boots, add the volume information to /etc/fstab.