Go to the table of contents Go to the previous page Go to the next page View or print as PDF
Content Gateway v7.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 60070 | Content Gateway FAQs | Updated: 22-October-2013
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.
For v7.8.x and later:
# cd /opt/WCG/config
For v7.7.x and earlier:
# cd /opt/WCG/sxsuitedb/db
2.
For v7.8.x and later:
# sqlite3 new_scip3.db
For v7.7.x and earlier:
# sqlite3 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.
For 7.8.x and later:
# cd /opt/WCG/config
# sqlite3 new_scip3.db
For 7.7.x and earlier:
# cd /opt/WCG/sxsuitedb/db
# sqlite3 scip3.db
2.
sqlite> drop table certificate_acl;
3.
sqlite> .read certificate_acl.bak
sqlite> .exit
4.

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