Please enter search query.
Search <book_title>...
Veritas Data Insight Administrator's Guide
Last Published:
2020-07-14
Product(s):
Data Insight (6.1.5)
- Section I. Getting started
- Introduction to Veritas Data Insight administration
- Configuring Data Insight global settings
- Overview of Data Insight licensing
- About scanning and event monitoring
- About filtering certain accounts, IP addresses, and paths
- About archiving data
- About Data Insight integration with Symantec Data Loss Prevention (DLP)
- Configuring advanced analytics
- About open shares
- About bulk assignment of custodians
- Section II. Configuring Data Insight
- Configuring Data Insight product users
- Configuring Data Insight product servers
- About node templates
- About automated alerts for patches and upgrades
- Configuring saved credentials
- Configuring directory service domains
- Configuring containers
- Section III. Configuring native file systems in Data Insight
- Configuring NetApp file server monitoring
- Configuring clustered NetApp file server monitoring
- About configuring secure communication between Data Insight and cluster-mode NetApp devices
- Configuring EMC Celerra or VNX monitoring
- Configuring EMC Isilon monitoring
- Configuring EMC Unity VSA file servers
- Configuring Hitachi NAS file server monitoring
- Configuring Windows File Server monitoring
- Configuring Veritas File System (VxFS) file server monitoring
- Configuring monitoring of a generic device
- Managing file servers
- Adding filers
- Adding shares
- Renaming storage devices
- Configuring NetApp file server monitoring
- Section IV. Configuring SharePoint data sources
- Configuring monitoring of SharePoint web applications
- About the Data Insight web service for SharePoint
- Adding web applications
- Adding site collections
- Configuring monitoring of SharePoint Online accounts
- About SharePoint Online account monitoring
- Adding SharePoint Online accounts
- Adding site collections to SharePoint Online accounts
- Configuring monitoring of SharePoint web applications
- Section V. Configuring cloud data sources
- Section VI. Configuring ECM data sources
- Section VII. Health and monitoring
- Section VIII. Alerts and policies
- Section IX. Remediation
- Section X. Reference
- Appendix A. Backing up and restoring data
- Appendix B. Data Insight health checks
- Appendix C. Command File Reference
- Appendix D. Data Insight jobs
- Appendix E. Troubleshooting
- Troubleshooting FPolicy issues on NetApp devices
Enabling export of UNIX/Linux NFS shares on VxFS filers
These instructions are for Red Hat Enterprise Linux operation system which has standalone Storage Foundation 6.0 installed and a file system created using VxFS. The steps will change depending upon other operating system flavors.
To enable export of NFS shares on VxFS filers
- Login as root on the VxFS filer and open the
/etc/exports
file. - Specify the name of the share that you would like to monitor. For example,
/demoshare
, where the VxFS file system is mounted.Ensure that the device entries are added in
/etc/fstab
to automatically mount NFS file systems after reboot.Data Insight uses /etc/exports and /etc/fstab for NFS share discovery. Sample entries are shown below:
root@RHEL5-VxFS ~]# cat /etc/fstab | grep vxfs
/dev/vx/dsk/openldapdg/vol01 /openldaphome vxfs defaults,_netdev 0 0
/dev/vx/dsk/openldapdg/vol02 /data vxfs defaults,_netdev 0 0
/dev/vx/dsk/openldapdg/vol03 /didata vxfs defaults,_netdev 0 0
[root@RHEL5-VxFS ~]# cat /etc/exports
/openldaphome 192.168.0.10(ro,sync,no_root_squash) 192.168.0.11 (rw,syc) /data/exportshare *(rw,sync,no_root_squash)
/didata *(rw,sync,no_root_squash)
- Specify the root access and read only access to Data Insight Collector node. For example,
/demoshare <Collector node IP> (ro,sync,no_root_squash)
ro:read only
no_root_squash: root access.
You can specify read +write, root_squash, anonuid, anongid or other settings, as required.
- Run the following command to start the NFS daemon
#service nfs start
More Information