We can execute the following SQL in Artifactory’s database:
In the table access_platform_config, query the row starting with "jfconnect.entitlements" in the column config_key:
Response, such as:
To delete:
Then restart Artifactory.
In the table access_platform_config, query the row starting with "jfconnect.entitlements" in the column config_key:
select * from access_platform_config where config_key like 'jfconnect.entitlements%'\G;
Response, such as:
*************************** 1. row *************************** config_key: jfconnect.entitlements revision: 1 created: 1675604235770 modified: 1675604235770 ... *************************** 2. row *************************** config_key: jfconnect.entitlements.config revision: 5 created: 1675604201581 modified: 1675604235801 ... *************************** 3. row *************************** config_key: jfconnect.entitlements.register revision: 2 created: 1675604201504 modified: 1675604201857 ...
To delete:
delete from access_platform_config where config_key like 'jfconnect.entitlements%';
Then restart Artifactory.