Enabling Meeting Configuration Changes

About this task

This page will provide steps to enable configuration changes to the Sametime Meeting server. Changes to the following configuration files will require these steps.

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 .
    Note: In helm, the term uninstall is terminating the deployment. Additionally, the command assumes you are in the helm directory. The . represents current directory.
  2. Save changes to the configuration file(s).
  3. Required step on Docker only: Delete the jitsi-conifg directory.
    rm -rf jitsi-config/
    Note: r=recursive and f=force

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

  4. Start the Meeting server.

    Docker:

    docker-compose up -d
    

    Kubernetes:

    helm install sametime-meetings . 
    Note: In helm, the term install is a deployment of the applications. Additionally, the command assumes you are in the helm directory. The . represents current directory.