


Hi,
Can someone tell me how do we change the password for keystore and truststore. When I change the password directly from CRXDE and restart, the server do not come up.
Views
Replies
Sign in to like this content
Total Likes
Whenever u create a keystore or truststore a node gets created in aeem .
To change the password you nèed to delete previously created node in crxde and recreate through ui.
you can write a config service to update the details
@ObjectClassDefinition(name="Config Service", description="This configuration is to update keystore password")
public @interface Configuration {
@AttributeDefinition(name = "Keystore password",
description = "The password to access the some configuration key password")
String keystorePassword() default "defulatkeypassword";
}
Whenever u create a keystore or truststore a node gets created in aeem .
To change the password you nèed to delete previously created node in crxde and recreate through ui.