How do I backup and restore the SSL Incident List?

The SSL Incident list can be backed up and restored on the Linux command line using sqlite3. Start by logging on to the Content Gateway host system and acquiring root privileges.

To back up the Incident list:

Steps

  1. Change to the Content Gateway SSL database directory:
    # cd /opt/WCG/config
  2. Open the database with sqlite:
    # /usr/bin/sqlite3 new_scip3.db
  3. In sqlite, perform the following steps:
    sqlite> .tables
    sqlite> .output certificate_acl.bak 
    sqlite> .dump certificate_acl 
    sqlite> .exit
    

Next steps

You now have a backup of the Incident list named “certificate_acl.bak”.