Go to the table of contents Go to the previous page Go to the next page View or print as PDF
Content Gateway v8.x: Frequently Asked Questions : How do I backup and restore the SSL Incident List?
How do I backup and restore the SSL Incident List?
Topic 60164 | Content Gateway FAQs | Updated: 12-Oct-2015
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:
1.
# cd /opt/WCG/config
2.
# /usr/bin/sqlite3 new_scip3.db
3.
sqlite> .tables
sqlite> .output certificate_acl.bak
sqlite> .dump certificate_acl
sqlite> .exit
You now have a backup of the Incident list named "certificate_acl.bak".
To restore a backup:
1.
# cd /opt/WCG/config
# /usr/bin/sqlite3 new_scip3.db
2.
sqlite> drop table certificate_acl;
3.
sqlite> .read certificate_acl.bak
sqlite> .exit
4.
5.

Go to the table of contents Go to the previous page Go to the next page View or print as PDF
Content Gateway v8.x: Frequently Asked Questions : How do I backup and restore the SSL Incident List?
Copyright 2016 Forcepoint LLC. All rights reserved.