Applies:
Venafi Encryption Director 8.0 and above
Microsoft SQL 2010 and above
Summary:
Identifying certificates that do not have an application object associated to them can be necessary at time. Below are two methods that exist.
Method #1:
- Login to WebAdmin and go the Reports tree.
- Click add and select the report "Certificate Association Expiration Report"
- Fill out all the desired fields to included the certificates you want.
- Click "Run Now".
- Download the finished report in CSV format
- Open the downloaded CSV file in Excel.
- Delete the first 6 rows.
- Column Q lists the "Application DN". The blank columns specified are those certificates that do not have an Application associated to the certificate.
Method #2
- Get access to a SQL prompt with enough rights to do a query.
- Run the following query:
select * from config_objects where GUID not in (select GUID from config_contains where Attribute = 'Consumers') and ClassName = 'x509 certificate'
Comments