Download: Visit the SentryOne Document product page to learn more about purchasing or to start a free trial. You can explore the product right now in our demo environment.
System Requirements
Compatible Browsers
- Chrome
- Edge
Note: Using an unsupported browser to access SentryOne Document prompts an Improve Your Experience message, and asks you to use Chrome or Microsoft Edge for the best experience.
SentryOne Document Software
Note: Hardware requirements are workload-specific. The specs listed below are the minimum recommended.
If you're using SentryOne Document Software (the on-premises, self-hosted version), the hardware requirements are:
- 2 CPU cores
- 8+ GB RAM
- 40+ GB free storage space
Remote Agent
Note: Hardware requirements are workload-specific. The specs listed below are the minimum recommended. As agent workloads do not benefit significantly from parallelization, one or two cores for each agent is recommended.
Remote Agent Hardware
- Recommend a relatively recent 64-bit processor, 8+ GB of RAM, and 20+ GB free storage space.
Remote Agent Software
- Windows PC with .NET 4.6.1 installed
Remote Agent Supported Operating Systems
64-bit (x64) Operating Systems | 32-bit (x86) Operating Systems |
---|---|
Windows Server 2008 R2 | Windows Server 2008 R2 |
Windows Server 2012 | Windows Server 2012 |
Windows Server 2016 | Windows 7 |
Windows 7 | Windows 8 |
Windows 8 | Windows 10 |
Windows 10 |
Additional Provider Requirements
Provider | Operating Systems | |||||||||
---|---|---|---|---|---|---|---|---|---|---|
SQL |
Note:
| |||||||||
SSAS |
Note:
| |||||||||
SSIS |
| |||||||||
SSRS and Power BI Report Server |
Note:
| |||||||||
Tableau | Tableau Servers with REST API enabled with the following API Versions: 2.3, 2.2, 2.1 and 2.0. |
Unsupported: SQL, SSAS, SSIS, and SSRS versions 2008 R2 and earlier are not officially supported. The providers remain accessible in the software if the prerequisites are met, however, we will not be able to provide support for any issues that are specific to these older releases.
Permissions
It's recommended that the machine running the remote agent has network access and permission to access all the solution items that you want to scan. See the Remote Agents article for additional recommendations about where to install them.
Note: SentryOne Document (the cloud version at document.sentryone.com) uses https://document-api.services.sentryone.com/ as the communication endpoint and port 443 for HTTPS. These will need to be allowed by your firewall.
Technology-Specific Permissions
Technology | Required Permissions |
---|---|
Azure Power BI |
|
SQL Server |
|
SQL Server Analysis Services |
|
SQL Server Integration Services |
|
SQL Server Reporting Services |
|
Tableau Permissions |
|
Accessing SentryOne Document Solutions
The following script shows you how to grant the necessary permissions to users so that all server level objects, databases, associated database objects and SQL Server Agent objects can be read. This needs to be executed against any SQL Server that exists as a solution in SentryOne Document.
SQL Server
USE [master];
GO
IF NOT EXISTS
(
SELECT *
FROM syslogins
WHERE [name] = 'Domain\Account'
)
CREATE LOGIN [Domain\Account] FROM WINDOWS WITH DEFAULT_DATABASE = [master];
GRANT VIEW SERVER STATE TO [Domain\Account];
GRANT VIEW ANY DEFINITION TO [Domain\Account];
GRANT CONNECT ANY DATABASE TO [Domain\Account];
GO
USE [msdb];
GO
CREATE USER [Domain\Account] FOR LOGIN [Domain\Account];
GO
USE [msdb];
GO
ALTER ROLE [SQLAgentOperatorRole] ADD MEMBER [Domain\Account];
GO
SSIS
If the server hosting the solution also has SSIS and the solution contains SSIS items, then permissions must be granted for the SSISDB in addition to the SQL Server permissions above.
USE [SSSIDB];
GO
CREATE USER [Domain\Account] FOR LOGIN [Domain\Account];
GO
USE [SSISDB];
GO
ALTER ROLE [SSIS_Admin] ADD MEMBER [Domain\Account];
GO
BSD 2-Clause "Simplified" License Disclaimer
A component of the SentryOne Document remote agent is attributed to MarkDig and licensed with the BSD 2-Clause "Simplified" License.
BSD 2-Clause "Simplified" License text as of November 26, 2019:
Copyright (c) 2018-2019, Alexandre Mutel
All rights reserved.
Redistribution and use in source and binary forms, with or without modification
, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
See https://github.com/lunet-io/markdig/blob/master/license.txt for current text and additional details.