Procedure to restore a backup

Steps

  1. Change to the Content Gateway SSL database directory and open the database with sqlite3:
    # cd /opt/WCG/config
    # /usr/bin/sqlite3 new_scip3.db
  2. To replace the current list with the backup list, delete the current list. Skip this step if you want to add the backup list to the current list.
    sqlite> drop table certificate_acl;
  3. To restore the backup list:
    sqlite> .read certificate_acl.bak
    sqlite> .exit
  4. Restart the proxy.
  5. In the Content Gateway manager, verify that the Incident List has been restored.