-
Type:
Bug
-
Status: Done
-
Resolution: Deferred
-
Affects Version/s: 5.4.6, 5.8.3
-
Fix Version/s: None
-
Component/s: Access Server, Config Manager
-
Labels:None
-
Severity:Low
-
Requirement Status:
There are some situations where you require to regenerate the adminToken stored in Artifactory for the Access server.
In order for the re-creation to take place, need to remove the tag <adminToken>
if you have this
<accessClientSettings> <adminToken>avixxxxxxxxx </adminToken> <userTokenMaxExpiresInMinutes>60</userTokenMaxExpiresInMinutes> </accessClientSettings>
in the config descriptor
the following editing
<accessClientSettings> <adminToken> </adminToken> <userTokenMaxExpiresInMinutes>60</userTokenMaxExpiresInMinutes> </accessClientSettings>
will not work to regenerate the token
On the other hand, this will work
<accessClientSettings> <userTokenMaxExpiresInMinutes>60</userTokenMaxExpiresInMinutes> </accessClientSettings>
and the token will be re-generated