How to remove these warning messages?

ARTIFACTORY: How to solve the problem of "failed decrypting secret registration token for entitlements config" warnings after system import

AuthorFullName__c
Yunzong Guo
articleNumber
000005574
ft:sourceType
Salesforce
FirstPublishedDate
2023-02-09T09:53:03Z
lastModifiedDate
2023-02-09T09:53:03Z
VersionNumber
1
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:
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.