bigbluebutton / bbb-install

BASH script to install BigBlueButton in 30 minutes.
GNU Lesser General Public License v3.0
617 stars 538 forks source link

BBB 2.6 -Unable to create admin-user #615

Open olma67 opened 1 year ago

olma67 commented 1 year ago

Hi, guys! I tried to create an admin-user with the following command:

docker exec greenlight-v3 bundle exec rake user:create["Administrator","xx...@xxxx.de","<my-password>","admin"]

The result:

Unable to create user: 'Administrator'
   Role 'admin' does not exist, maybe you have not run the DB migrations?

Fresh install on Ubuntu 20.04. Any ideas?

Thank you very much.

X-post: https://groups.google.com/g/bigbluebutton-setup/c/4qgwa4LYRBs

olma67 commented 1 year ago

Here is the solution:

I accidentally mixed "admin" with "user". The correct command is:

docker exec greenlight-v3 bundle exec rake admin:create["Administrator","xx...@xxxx.de","<my-password>","admin"]

Thanks to Detlef Köppel of BBB-Academy.de