The page has been translated by Gen AI.

Connect to Server

When using a volume on the server, a connect or disconnect operation is required.
File Storage Details on the page, after adding a connected server, access the server and perform the connection tasks (Mount, network drive connection). After use, perform the disconnection tasks (Umount, disconnect network drive) and then remove the connected server.

Connect to server (Mount, network drive connection)

To use the volume added to the connected server, you must log into the server and perform the connection tasks (Mount, network drive connection). Follow the steps below.

Linux operating system (NFS)

Example configuration for server connection
  • Mount information: 10.10.10.10:/filestorage
  • Mount location: /data
  1. Click the All Services > Storage > File Storage menu. Navigate to the Service Home page of File Storage.

  2. On the Service Home page, click the File Storage menu. You will be taken to the File Storage List page.

  3. On the File Storage List page, click the resource to be used on the connected server. You will be taken to the File Storage Details page.

  4. Check the server in the Connection Server item and then connect.

  5. Refer to the procedure below to mount the volume.

    • Switch to root privileges

      $ sudo -i
      
    • Package installation (Redhat family)

      # yum install nfs-utils
      
    • Package installation (Debian-based)

      # apt-get install nfs-common
      
    • Enable and start NFS-related daemon

      # systemctl enable rpcbind.service
      # systemctl start rpcbind.service
      
    • Volume Mount

      # mkdir /data
      
      # mount -t nfs -o vers=3,noresvport 10.10.10.10:/filestorage /data
      
      # vi /etc/fstab
      (추가) 10.10.10.10:/filestorage /data nfs defaults,vers=3,_netdev,noresvport 0 0
      
guide
  • Supports NFS Version 3.

Windows operating system (CIFS)

  1. Click the All Services > Storage > File Storage menu. Go to the Service Home page of File Storage.

  2. On the Service Home page, click the File Storage menu. You will be taken to the File Storage list page.

  3. On the File Storage List page, click the resource to be used on the connected server. You will be taken to the File Storage Details page.

  4. In the Connection Server item, verify the server and then connect.

  5. Refer to the steps below to connect the volume (network drive).

    • In File Explorer, right-click This PC and click Connect network drive.
    • Refer to the detailed information of the File Storage volume to be connected, enter the drive and folder, and then click Finish.
    • To set it to reconnect automatically when the server restarts, select Reconnect when logging in.
  6. In the network credential input popup, enter the account name (ID) and password, then click Confirm.

    • Check the account name (ID) on the File Storage Details page.
    • The password is the password set during File Storage creation.
    • If you connect two or more volumes with the CIFS protocol enabled, add the storage IP and storage name to the hosts file before connecting.
    * Mount명
    \\10.10.10.10\filestorage1
    \\10.10.10.10\filestorage2
    
    * hosts 파일 내용 추가
    10.10.10.10 filestoragename1 #설명
    10.10.10.10 filestoragename2 #설명
    
    * hosts 파일에 작성된 이름 사용
    filestorage1 연결 시: \\ filestoragename1\filestorage1
    filestorage2 연결 시: \\ filestoragename2\filestorage2
    

Disconnect server (Umount, disconnect network drive)

After connecting to the server and performing the disconnect tasks (Umount, disconnecting the network drive), you must detach the server in the Console. Follow the steps below.

Caution
If you disconnect the server from the console without performing the disconnection tasks on the server (Umount, disconnecting network drive), a server state error (Hang) may occur. Be sure to perform the OS tasks first.

Linux operating system (NFS)

  1. Click the All Services > Storage > File Storage menu. Navigate to the Service Home page of File Storage.

  2. On the Service Home page, click the File Storage menu. You will be taken to the File Storage List page.

  3. On the File Storage List page, click the resource to detach the connected server. Go to the File Storage Details page.

  4. In the Connection Server field, verify the server information and then connect to the server.

  5. Refer to the commands listed in the table below to carry out the unmount (Umount) operation.

    • Volume Umount
      # umount /data
      
      # vi /etc/fstab
      (삭제) 10.10.10.10:/filestorage /data nfs defaults,vers=3,_netdev,noresvport 0 0
      

Windows operating system (CIFS)

  1. Click the All Services > Storage > File Storage menu. Navigate to the Service Home page of File Storage.
  2. On the Service Home page, click the File Storage menu. You will be taken to the File Storage list page.
  3. On the File Storage List page, click the resource to disconnect the server. Navigate to the File Storage Details page.
  4. In the Connection Server field, verify the server information and then connect to the server.
  5. Refer to the steps below to disconnect the volume (disconnect the network drive).
    • In File Explorer, right-click the network drive that is already connected.

    • Please select Disconnect network drive

How-to guides
Use Snapshot