#---------------------------------------- # Settings for Mattermost Install scripts #---------------------------------------- # FQHN_HOSTNAME # # The full qualified histname under which bbb service # is available # # Defaults to full qualified hostname of the system # FQHN_HOSTNAME="" # MATTERMOST_USER # # The user under which Mattermost service is running. # # Defaults to: MATTERMOST_USER="mattermost" # #MATTERMOST_USER="" # MATTERMOST_GROUP # # The group od mattermost user. # # Defaults to: MATTERMOST_GROUP="$MATTERMOST_USER" # #MATTERMOST_GROUP="" # MYSQL_CREDENTIAL_ARGS # # Giving password on command line is insecure an sind mysql 5.5 # you will get a warning doing so. # # Reading username/password fro file ist also possible, using MySQL/MariaDB # commandline parameter '--defaults-file'. # # Since Version 5.6, that method is considered as insecure. # To avoid giving the password on command line, we use an # encrypted option file # # Create (encrypted) option file: # $ mysql_config_editor set --login-path=local --socket=/var/run/mysqld/mysqld.sock --user=backup --password # $ Password: # # Use of option file: # $ mysql --login-path=local ... # # Example # MYSQL_CREDENTIAL_ARGS="--login-path=local" # MYSQL_CREDENTIAL_ARGS="--defaults-file=/etc/mysql/debian.cnf" (Debian default) # MYSQL_CREDENTIAL_ARGS="--defaults-file=/usr/local/mysql/sys-maint.cnf" # # # MariaDB 10.4.x # MYSQL_CREDENTIAL_ARGS="-u root -S /tmp/mysql.sock" # # No Defaults # #MYSQL_CREDENTIAL_ARGS="--login-path=local" # DB_NAME # # Database Name of Mattemost's Database # # Defaults to: DB_NAME="mattermost" # #DB_NAME="mattermost" # DB_USER # # Database USER of Mattemost's Database # # Defaults to: DB_USER="mattermost" # #DB_USER="mattermost" # DB_PASS # # Database Password used for Mattemost's Database # # Defaults to a random created one. # #DB_PASS=""