Version:
7.2.x
Issue:
Certificates menu on the right of the Assets page is not available.
Symptoms:
Certificates menu on the right of the Assets page is not available but the page is still available if browsed directly via the URL https://<Bit9 server name>/certificates.php
Cause:
"EnableCertificates" property under shepherd_config.php is set to False.
Solution:
Go to https://<Bit9 server name>/shepherd_config.php and set the property "EnableCertificates" to TRUE. Do NOT make any changes to other properties as it can cause unexpected behavior including breaking of the Bit9 server installation.
If the "EnableCertificates" is not listed on the shepherd_config.php, run this SQL script instead:
use DAS
UPDATE dbo.shepherd_configs
SET value='true'
WHERE name='EnableCertificates';
Important:
value='true' is case sensitive for this specific property. Use all lower case.