You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
at the moment it users cannot added via dip, but only manually:
insert into IdpRole (id, roleName) values (0, 'admin');
insert into IdpRole (id, roleName) values (2, 'authenticated');
insert into IdpUser (id, dateCreated, email, firstName, lastName, password, status, username) values (0, NOW(), '[email protected]', 'test', 'test', MD5('12345'), 'ACTIVE', 'testuser')
insert into IdpUser_IdpRole (user_id, roles_id) select u.id, r.id from IdpUser u, IdpRole r where u.username = 'testuser' and r.roleName='authenticated' and not exists (select * from IdpUser_IdpRole ur where ur.user_id=u.id and ur.roles_id=r.id );
there are little flaws:
mkdir -p $JBOSS_HOME/modules/eu/scape_project/planning/util/
should be
mkdir -p $JBOSS_HOME/modules/eu/scape_project/planning/util/main/
The text was updated successfully, but these errors were encountered:
The vagrant configuration is not complete
at the moment it users cannot added via dip, but only manually:
there are little flaws:
The text was updated successfully, but these errors were encountered: