Arctera Insight Information Governance Administrator's Guide
- Section I. Getting started
- Introduction to Arctera Insight Information Governance administration
- Configuring Information Governance global settings
- About scanning and event monitoring
- About filtering certain accounts, IP addresses, and paths
- About archiving data
- About Information Governance integration with Data Loss Prevention (DLP)
- Configuring advanced analytics
- About open shares
- About user risk score
- About bulk assignment of custodians
- Configuring Metadata Framework
- Section II. Configuring Information Governance
- Configuring Information Governance product users
- Configuring Information Governance product servers
- About node templates
- About automated alerts for patches and upgrades
- Configuring saved credentials
- Configuring directory service domains
- Adding a directory service domain to Information Governance
- Configuring containers
- Server Pools
- Section III. Configuring native file systems in Information Governance
- Configuring clustered NetApp file server monitoring
- About configuring secure communication between Information Governance 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 Arctera File System (VxFS) file server monitoring
- Configuring monitoring of a generic device
- Managing file servers
- Adding filers
- Adding shares
- Renaming storage devices
- Configuring clustered NetApp file server monitoring
- Section IV. Configuring SharePoint data sources
- Configuring monitoring of SharePoint web applications
- About the Information Governance web service for SharePoint
- Adding web applications
- Adding site collections
- Configuring monitoring of SharePoint Online accounts
- About SharePoint Online account monitoring
- Adding site collections to SharePoint Online accounts
- Configuring monitoring of SharePoint web applications
- Section V. Configuring cloud data sources
- Configuring monitoring of Box accounts
- Configuring OneDrive account monitoring
- Configuring Azure Netapp Files Device
- Managing cloud sources
- Section VI. Configuring Object Storage Sources
- Section VII. Health and monitoring
- Section VIII. Alerts and policies
- Configuring policies
- Managing policies
- Configuring policies
- Section IX. Remediation
- Configuring remediation settings
- Section X. Reference
- Appendix A. Information Governance best practices
- Appendix B. Migrating Information Governance components
- Appendix C. Backing up and restoring data
- Appendix D. Arctera Information Governance health checks
- About Information Governance health checks
- About Information Governance health checks
- Appendix E. Command File Reference
- Appendix F. Arctera Information Governance jobs
- Appendix G. Troubleshooting
- Troubleshooting FPolicy issues on NetApp devices
Creating a non-administrator user for an EMC Isilon cluster
Information Governance requires a user account on Isilon to perform automatic discovery of CIFS shares, NFS exports, and to list all local groups, group memberships, and local users. Information Governance can use a non-administrator account for this purpose. This account can be a local Isilon OneFS account or a domain account. Information Governance uses a robust credential authentication mechanism to prevent potential security threats.
To configure a domain user for discovery and scanning of CIFS shares and NFS exports
- Log on as an Isilon administrator to the Isilon cluster CLI using SSH or Telnet .
- Run the following commands:
To create a role named dirole
isi auth roles create --name dirole --description "Read-only role for DataInsight"
To grant the user privileges to log in to the REST API platform framework and retrieve a list of CIFS shares, NFS exports, and user and group lists.
isi auth roles modify dirole
--add-user=username@domain
--add-priv-ro=ISI_PRIV_SMB
--add-priv-ro=ISI_PRIV_LOGIN_PAPI --add-priv-ro=ISI_PRIV_AUTH
--add-priv-ro=ISI_PRIV_NETWORK
--add-priv-ro=ISI_PRIV_NFS
To add the user to the Backup Operators group on Isilon, which enables Information Governance to scan all the CIFS shares and NFS exports
isi auth groups modify "Backup Operators" --add-user username@domain
To configure a local user for discovery of CIFS shares and NFS exports
- Log on as an Isilon administrator to the Isilon cluster CLI using SSH or Telnet.
- Run the following commands:
To create a new local user called diuser
isi auth users create diuser --enabled yes --password xxxxxx
To create a role named dirole
isi auth roles create --name dirole --description "Read-only role for DataInsight"
To grant the user the privileges to log on to the REST API platform framework to get a list of CIFS shares and to list users and groups
isi auth roles modify dirole --add-user=diuser --add-priv-ro=ISI_PRIV_SMB --add-priv-ro=ISI_PRIV_LOGIN_PAPI --add-priv-ro=ISI_PRIV_AUTH --add-priv-ro=ISI_PRIV_NETWORK --add-priv-ro=ISI_PRIV_NFS