cancel
Showing results for 
Search instead for 
Did you mean: 

Password locked for Administrator of J2ee

Former Member
0 Kudos

Does anyone know how to unlock the Administrator ID or use the emergency user creation procedure in J2ee engine 6.20? I found the weblog by Benny Schaik-Lebek and OSS not 669848 but they are for 6.30.

Any help would be greatly appreciated.

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

If you started go from the dispatcher directory then your are not in the server console, you are in the dispatcher console.

If your r3startup service is configured to start the server automatically then you will have to use the dispatcher go. Then, once it is up and you have a prompt try "lsc" to list the cluster elements and the jump <clusterID_server> to jump to the console of the server. Then you have access to the required commands once you "add" them.

Nick

Former Member
0 Kudos

After much searching I am unable to find a way to use the user commands in the console. Every time I try I get the error "There aren't commands from users group in the CommandContext". I have started the server with the go.bat file from the \dispatcher directory but I cannot access the users commands.

Former Member
0 Kudos

Start the server from the command line directly so that you are inside the console.

>add users

>man users

>createuser

usage: createuser -u <name> - creates a user with empty password;

createuser -u <name> <password> [<parent>] - creates a user with specified password in specified group(if not specified, into 'root');

createuser -g <name> [<parent>] - creates a group in specified group(if not specified, into 'root');

>createuser -u billybob hellobilly administrators

Now you have a user "billybob" who is an administrator

To simply change the password:

>password

usage: password [<user-name>] <password>

Changes password of current/specified user

>

>password Administrator newpassword

Nick