1. Confirm the Postgres database has a backup according the the Cluster Management Guide.
2. Check the entries in the cb_settings table, confirm both 'BanningWhitelistVersion' and 'BanningApprovedlistVersio'n are present.
3. Due to the many indexes in the Postgres database it is not usually a good idea to modify the database directly; It is best to use API calls. Since there is not an API call to remove duplicate keys, the entry required the 'BanningWhitelistVersion' row to be manually removed.
# psql -p 5002 cb
# select * from cb_settings where key='BanningWhitelistVersion';
(Result: 1 row)
# select * from cb_settings where key='BanningApprovedlistVersion';
(Result: 1 row)
# delete from cb_settings where key='BanningWhitelistVersion';
(Result: DELETE 1)
# \q