Reputation: 95
I have deployed a Kie Server 7.5.0 over a Wildfly 10, I can enter the login page of the Kie workbench, but I haven't been able to find out which is the default admin user or how to add my own one. I see Wildfly has an add_user script and an access management in its console, but I don't know if this is the way to enable access to Kie and how to proceed.
Do I have to specify a boot parameter in Wildfly with -D or something? How can I enable a user to access Kie Server.
Thanks in advance.
Upvotes: 0
Views: 1913
Reputation: 1631
Kie-server.war uses applicationRelam for authentication and authorization. You can create ApplicationRelam user using /bin/add-user.sh script. You can use below command:
$JBOSS_HOME/bin/add-user.sh -a User1 admin@123 -g admin,kie-server
Upvotes: 2