Configure the NFS Client Service | Teradata DSA | DSU - 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
17.10
Published
April 2022
Language
English (United States)
Last Update
2022-04-08
dita:mapPath
jpw1611950501633.ditamap
dita:ditavalPath
itl1576617711059.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