Update scripts and docs to support ubunto 20.04

This commit is contained in:
2025-01-13 00:32:43 +01:00
parent d407e0411a
commit fa08736b4f
9 changed files with 862 additions and 139 deletions

96
README.accounts.18.04 Normal file
View File

@@ -0,0 +1,96 @@
# =================
# Creating Accounts
# =================
# see: https://docs.bigbluebutton.org/greenlight/gl-admin.html#creating-accounts
# The following examples assume you have Greenlight installed in
# the /usr/local/greenlight directory. Before running the commands,
# change into the /usr/local/greenlight directory.
#
cd /usr/local/greenlight
# -----
# Creating an Administrator Account
# -----
# To create an Administrator account with the default values, in the
# Greenlight directory, run the following command:
#
docker exec greenlight-v2 bundle exec rake admin:create
# If you would like to configure the name, email, or password of the
# Administrator account, replace the previous command with this:
#
# docker exec greenlight-v2 bundle exec rake user:create["<name>","<email>","<password>","admin"]
#
# Example:
#
# docker exec greenlight-v2 bundle exec rake user:create["Christoph","ckubu@oopen.de","<geheim>","admin"]
#
#docker exec greenlight-v2 bundle exec rake user:create["<name>","<email>","<password>","admin"]
# Create admin user 'Christoph' - Login: ckubu@oopen.de
#
docker exec greenlight-v2 bundle exec rake user:create["Christoph","ckubu@oopen.de","EadGl15E.%","admin"]
# Once the command has finished it will print the accounts email and password.
# -----
# Creating a User Account
# -----
# To create an User account with specified values, in the Greenlight
# directory, run the following command:
#
# docker exec greenlight-v2 bundle exec rake user:create["<name>","<email>","<password>","user"]
#
# Example:
#
# docker exec greenlight-v2 bundle exec rake user:create["Maex","mx@so36.net","e6i/U-2NRpLa","user"]
#
#docker exec greenlight-v2 bundle exec rake user:create["<name>","<email>","<password>","user"]
# Create normal user 'inge' - Login: inge.reitberger@oopen.de
#
docker exec greenlight-v2 bundle exec rake user:create["inge","inge.reitberger@oopen.de","pacotaibo2","user"]
# Once the command has finished it will print the account's email and password.
# ==============
# Accounts at bbb.oopen.de
# ==============
# admin account:
#
docker exec greenlight-v2 bundle exec rake user:create["Christoph","ckubu@oopen.de","EadGl15E.%","admin"]
# user accounts:
#
docker exec greenlight-v2 bundle exec rake user:create["inge","inge.reitberger@oopen.de","pacotaibo2","user"]
docker exec greenlight-v2 bundle exec rake user:create["Maex","mx@so36.net","e6i/U-2NRpLa","user"]
docker exec greenlight-v2 bundle exec rake user:create["ilk","ilk@oopen.de","E4_Z4-XzmLpd","user"]
docker exec greenlight-v2 bundle exec rake user:create["opp1","opp1@opferperspektive.de","5.STRz/zK5/q","user"]
docker exec greenlight-v2 bundle exec rake user:create["opp2","opp2@opferperspektive.de","22MtX/vHT.pR","user"]
docker exec greenlight-v2 bundle exec rake user:create["soli-mm","soli-mm@oopen.de","fr31h31t-fu3r-M&M","user"]
# ==============
# Managing Users
# ==============
# see: https://docs.bigbluebutton.org/greenlight/gl-admin.html#managing-users
# -----
# Accessing the Administrator Panel
# -----
# Greenlight has an administrator account that gives you the ability to manage
# users on the server.