Enterprise Vault™ Installing and Configuring
- About this guide
- Section I. Enterprise Vault requirements
- Enterprise Vault hardware requirements
- Hardware requirements for Enterprise Vault server
- About the storage requirements for Enterprise Vault
- Storage for vault stores
- Storage requirements for SQL databases
- Enterprise Vault required software and settings
- Basic software requirements for Enterprise Vault
- Best practice settings for Enterprise Vault servers
- Preinstallation tasks for Enterprise Vault server
- About assigning permissions and roles in SQL databases
- Additional requirements for Operations Manager
- Additional requirements for classification
- Additional requirements for Enterprise Vault Reporting
- Additional requirements for Exchange Server archiving
- Preinstallation tasks for Exchange server archiving
- Assigning Exchange Server permissions to the Vault Service account
- Enterprise Vault client access with Exchange Server archiving
- Requirements for RPC over HTTP
- Additional requirements for Domino Server archiving
- Requirements for Domino mailbox archiving
- Register the Enterprise Vault Domino Gateway
- About the user ID for Domino mailbox archiving
- Requirements for Domino journaling archiving
- Additional requirements for File System Archiving (FSA)
- Additional requirements for SharePoint Server archiving
- Additional requirements for Skype for Business Archiving
- Additional requirements for SMTP Archiving
- Additional requirements for Enterprise Vault Search
- Additional requirements for a standalone Enterprise Vault Administration Console
- Additional requirements for the Archive Discovery Search Service
- Enterprise Vault hardware requirements
- Section II. Installing Enterprise Vault
- Section III. Configuring Enterprise Vault
- About configuring Enterprise Vault
- Running the Enterprise Vault configuration wizard
- Securing Enterprise Vault Web Access components
- Running the Enterprise Vault Getting Started wizard
- About the express and custom modes of the Enterprise Vault Getting Started wizard
- About indexing configuration with the Enterprise Vault Getting Started wizard
- About storage configuration with the Enterprise Vault Getting Started wizard
- Configuring Enterprise Vault Operations Manager
- Configuring the Archive Discovery Search Service
- Section IV. Initial Enterprise Vault setup
- Initial Enterprise Vault setup
- Setting up storage
- About Enterprise Vault single instance storage
- About creating vault stores
- About Enterprise Vault safety copies
- About Enterprise Vault safety copies
- Creating vault store partitions
- Adding index locations
- Setting up Index Server groups
- Do I need to create Index Server groups?
- Reviewing the default settings for the site
- Setting up Enterprise Vault Search
- Setting up provisioning groups for Enterprise Vault Search
- Configuring user browsers for Enterprise Vault Search
- Setting up Enterprise Vault Search Mobile edition
- Managing metadata stores
- Section V. Clustering Enterprise Vault with VCS
- Introducing clustering with VCS
- Installing and configuring Storage Foundation HA for Windows
- Configuring the VCS service group for Enterprise Vault
- Running the Enterprise Vault Configuration wizard
- Setting up Enterprise Vault in an active/passive VCS configuration
- About setting up Enterprise Vault in a VCS N+1 configuration
- Implementing an SFW HA-VVR disaster recovery solution with Enterprise Vault
- Troubleshooting clustering with VCS
- Section VI. Clustering Enterprise Vault with Windows Server Failover Clustering
- Introducing clustering with Windows Server Failover Clustering
- Control of Enterprise Vault services in a Windows Server failover cluster
- Preparing to cluster with Windows Server Failover Clustering
- Configuring Enterprise Vault in a Windows Server failover cluster
- Setting up a new Enterprise Vault installation with Windows Server Failover Clustering support
- Examples of Enterprise Vault installations in various Windows Server Failover Clustering modes
- Converting an existing Enterprise Vault installation to a Windows Server failover cluster
- Modifying an existing Enterprise Vault cluster
- Troubleshooting clustering with Windows Server Failover Clustering
- Introducing clustering with Windows Server Failover Clustering
- Appendix A. Automatically preparing an Enterprise Vault server
Creating a SQL login account
The Vault Service account must have a SQL login account for the SQL Server, with the required permissions. The following procedure describes how to create this login account.
Note:
If you have made the Vault Service account a member of an Active Directory group, you can also follow the procedure below to create a SQL login account for this group rather than the Vault Service account. However, the group's SQL login account requires extra roles and permissions that the login account for the Vault Service account does not require.
See Assigning the required SQL Server roles and permissions to an Active Directory group.
To create a SQL login account
- Start SQL Server Management Studio.
- In the Object Explorer, select Security > Logins.
- Right-click Logins, and select New Login.
- Enter the Vault Service account as domain\username, or click Search and search for the account. In the search dialog box, ensure that the correct domain is entered in the Locations box.
- Select Windows authentication.
- In the Select a page pane, click Server Roles.
- Select the check box beside dbcreator.
- Click OK.
- In the toolbar, click New Query.
- Enter the following script:
use Master GRANT VIEW SERVER STATE TO "domain\vsa_account" GRANT ALTER ANY LOGIN TO "domain\vsa_account" GRANT VIEW ANY DEFINITION TO "domain\vsa_account" GO
Where domain\vsa_account is the domain and name of the Vault Service account.
- Click Execute.
Verify that the Vault Service account has the dbcreator role as follows:
In the Object Explorer, select Security > Server Roles.
In the right-hand pane, double-click the dbcreator role.
Ensure that the Vault Service account is in the membership list.
Verify that the Vault Service account has the correct permissions as follows:
In the Object Explorer, right-click the top-level SQL Server object and then select Properties.
Select the Permissions page.
Under Logins or roles, select the Vault Service account and then click Effective Permissions. Check that VIEW SERVER STATE, ALTER ANY LOGIN, and VIEW ANY DEFINITION are included in the list of permissions.