Launch SQL Server Management Studio and connect to the SQL Server.
Click New Query, paste the script below and change Domain\Username to reference the Service Account accordingly.
use master;
GRANT ALTER TRACE TO Domain\Username
GRANT VIEW ANY DEFINITION TO Domain\Username
GRANT VIEW SERVER STATE TO Domain\Username
GRANT ALTER SERVER STATE TO Domain\Username
Click Execute
Windows Permissions:
Local Administrators group membership on the application server hosting the server software (web console).
Logon as Batch Job
Logon as Service
Additional Information
DB_OWNER permissions on das is automatically assigned to the Service Account during database creation, and should never be removed.
There should be an active SA account in SQL or the install may fail with "a critical database script".
More details can be found in the SQL Server Configuration Guide on Tech Docs > Server Documentation > SQL Server Configuration Guide.