How create user in Database Manually.

Hi All,

I want to create bulk of users in database. How I can do it manually.
is there any script for it. or any storeprocedure which I can call from my program.

Thanks for Help,

Regards,

Rizwan

I'm somewhat new to this but

I'm somewhat new to this but it seems like you just insert username and password into the users table. It has worked for me.

insert into users (username, password) values ('user', 'password');

Simple.

Or, seems like you can use ejabberdctl from a bash script.

ejabberdctl user server password

Syndicate content