Enabling Meeting Configuration Changes

About this task

You can make configuration changes to the Sametime Meeting server by modifying the following files.
  • Docker
    • custom.env
    • .env
    • docker-compose.yml
  • Kubernetes
    • helm/values.yaml
Note: These values are case sensitive and must be entered in lower case.

Procedure

  1. Shut down the Meeting server.
    • Docker
      docker-compose down
      
    • Kubernetes
      helm uninstall sametime-meetings
    In helm, the term uninstall is terminating the deployment. Additionally, the command assumes you are in the helm directory. The period (.) represents the current directory.
  2. Modify the configuration file.
  3. Save changes to the configuration files.
  4. Docker only: Delete the jitsi-conifg directory.
    rm -rf jitsi-config/
    Where r = recursive and f - force.

    The jitsi-config directory on Docker rebuilds on startup with the new configuration values.

  5. Start the Meeting server.
    • Docker
      docker-compose up -d
      
    • Kubernetes
      helm install sametime-meetings
      In helm, the term install is a deployment of the applications. Additionally, the command assumes you are in the helm directory. The period (.) represents the current directory.