Mounting an NFS mount point

Last Updated : Jun 18, 2024 |

About this task

After deploying the new server, mount the extract device. Ensure that data can be written to and read from the network mount point extract path.

Procedure

  1. On the CMS server, run mkdir /CUE_extract_dir to create the NFS mount point.
  2. Run the ifconfig -a command.

    An output similar to the following is displayed:

    eth0	Link encap:Ethernet HWaddr 90:B1:1C:55:21:4B
    inet addr:135.9.131.127 Bcast:135.9.131.255 Mask:255.255.255.0
    inet6 addr: fe80::92b1:1cff:fe55:214b/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
    RX packets:3108896 errors:0 dropped:0 overruns:0 frame:0 TX packets:296988 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000
    RX bytes:713780687 (680.7 MiB) TX bytes:36371556 (34.6 MiB)
    Interrupt:35
    
    eth1	Link encap:Ethernet HWaddr 90:B1:1C:55:21:4C BROADCAST MULTICAST MTU:1500 Metric:1
    RX packets:0 errors:0 dropped:0 overruns:0 frame:0 TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000
    RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
    Interrupt:38
    
    eth2	Link encap:Ethernet HWaddr 90:B1:1C:55:21:4D BROADCAST MULTICAST MTU:1500 Metric:1
    RX packets:0 errors:0 dropped:0 overruns:0 frame:0 TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000
    RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
    Interrupt:34
    
    eth3	Link encap:Ethernet HWaddr 90:B1:1C:55:21:4E BROADCAST MULTICAST MTU:1500 Metric:1
    RX packets:0 errors:0 dropped:0 overruns:0 frame:0 TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000
    RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
    Interrupt:36
    
    lo	Link encap:Local Loopback
    inet addr:127.0.0.1 Mask:255.0.0.0 inet6 addr: ::1/128 Scope:Host
    UP LOOPBACK RUNNING MTU:65536 Metric:1
    RX packets:75254 errors:0 dropped:0 overruns:0 frame:0 TX packets:75254 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0
    RX bytes:5954970 (5.6 MiB) TX bytes:5954970 (5.6 MiB)
    
  3. Run ping route_ip and verify that the network router for the CMS server responds.
  4. Run ping nfs_server_ip_address and verify that the network server responds.
  5. To mount the network server, run the following command on a single line:
    mount -t nfs <network_server_ip_address>:/network_server_mt_pt_dir/CUE_extract_dir
    Important:

    The network_server_mt_pt_dir must be the same mount point created when you extracted data using the cvue_extract process.

  6. Run cd /CUE_extract_dir to switch to the network server mount point directory.
  7. Run ls -l to list the contents of the network server mount point directory.

    Ensure that the cvue_extract.tar file is listed.