Configuring the NFS Client Service - BAR - Data Stream Architecture - Data Stream Utility

Teradata® DSA - DSU Installation, Configuration, and Upgrade Guide

Product
BAR
Data Stream Architecture
Data Stream Utility
Release Number
16.20
Published
September 2019
Language
English (United States)
Last Update
2019-09-27
dita:mapPath
cbv1514490990317.ditamap
dita:ditavalPath
3153_DSU_ICUCustomer_1620.ditaval.ditaval
dita:id
B035-3153
lifecycle
previous
Product Category
Software
Teradata Tools and Utilities
The NFS client service checks the FSTAB file for NFS file systems and mounts them. As long as the NFS client service is configured to start on boot, NFS file systems are automatically mounted on startup.

The FSTAB option make the mounted file system read and write, are not dumped, and are not checked at reboot.

  1. Create a mount point directory; for example, /export/backup. # mkdir -p /export/backup
  2. Create the entry in the FSTAB file (/etc/fstab). This example uses these parameters:
    • NFS server: nfsserver
    • NFS share on the server: /data/col1/backup/tdbackup
    • Mount point on client: /export/backup
    The resulting FSTAB file looks as follows:
    # device                              mountpoint      fs-type options dump fsckorder
    ...
    nfsserver:/data/col1/backup/tdbackup  /export/backup  nfs    rw      0     0
    ...
    
  3. To mount the system, manually start the NFS service: # service nfs start
  4. If necessary, start the rpcbind service: service rpcbind start
  5. Configure the NFS service to start on boot: # chkconfig nfs on