OpenVidu Elastic: On-premises configuration and administration#
The OpenVidu installer offers an easy way to deploy OpenVidu Elastic on-premises. However, once the deployment is complete, you may need to perform administrative tasks based on your specific requirements, such as changing passwords, specifying custom configurations, and starting or stopping services.
This section provides details on configuration parameters and common administrative tasks for on-premises OpenVidu Elastic deployments.
OpenVidu configuration#
Directory structure#
OpenVidu Elastic is composed of two types of nodes: Master and Media nodes. The directory structure of OpenVidu Elastic is as follows for each type of node:
The OpenVidu Elastic Master Node is installed at /opt/openvidu/
and has a systemd service located at /etc/systemd/system/openvidu.service
.
The directory structure of the Master Node is as follows:
|-- /opt/openvidu
|-- config/
|-- custom-layout/
|-- data/
|-- deployment-info.yaml
|-- docker-compose.override.yml
|-- docker-compose.yml
|-- .env
|-- owncert/
`-- recordings/
config/
: Contains the configuration files for the services deployed with the Master Node.custom-layout/
: An empty directory where you can place Custom Recording Templates for the Egress service. It also serves for OpenVidu V2 compatibility custom layouts.data/
: Contains the data generated by the services deployed with the Master Node.deployment-info.yaml
: Contains the deployment information of the Master Node.docker-compose.override.yml
: Contains the service with the Default App (OpenVidu Call) deployed with OpenVidu Elastic.docker-compose.yml
: Contains the main services deployed for the Master Node..env
: Contains parameters managed by multiple services.owncert/
: Contains the custom certificates for the Caddy server if you are using your own certificates.recordings/
: Contains the recordings generated by the OpenVidu V2 compatibility service whenV2COMPAT_OPENVIDU_PRO_RECORDING_STORAGE
is set tolocal
.
The OpenVidu Elastic Media Node is installed at /opt/openvidu/
and has a systemd service located at /etc/systemd/system/openvidu.service
.
The directory structure of the Media Node is as follows:
config/
: Contains the configuration files for the services deployed with the Media Node.data/
: Contains the data generated by the services deployed with the Media Node.deployment-info.yaml
: Contains the deployment information of the Media Node.docker-compose.yml
: Contains the main services deployed for the Media Node.
Services Configuration#
Some services deployed with OpenVidu have their own configuration files located in the /opt/openvidu/config/
directory, while others are configured in the .env
file. Below are the services and their respective configuration files and parameters:
Info
The installer provides default configurations that work out of the box. However, you can modify these configurations to suit your specific requirements.
Configuration Files#
Service | Description | Configuration File Location |
Reference documentation |
---|---|---|---|
Caddy Server | Serves OpenVidu services and handles HTTPS. | /opt/openvidu/config/caddy.yaml |
Caddy JSON Structure |
Loki Service | Used for log aggregation. | /opt/openvidu/config/loki.yaml |
Loki Config |
Promtail Service | Collects logs and sends them to Loki. | /opt/openvidu/config/promtail.yaml |
Promtail Config |
Mimir Service | Service for long-term prometheus storage | /opt/openvidu/config/mimir.yaml |
Mimir Config |
Grafana Service | Used for visualizing monitoring data. | /opt/openvidu/config/grafana_config/ |
Grafana Config |
Service | Description | Configuration File Location |
Reference documentation |
---|---|---|---|
OpenVidu Server | Manages video rooms. It is compatible with LiveKit configuration and includes its own OpenVidu configuration parameters | /opt/openvidu/config/livekit.yaml |
LiveKit Config |
Ingress Service | Imports video from other sources into OpenVidu rooms. | /opt/openvidu/config/ingress.yaml |
LiveKit Ingress Config |
Egress Service | Exports video from OpenVidu rooms for recording or streaming. | /opt/openvidu/config/egress.yaml |
LiveKit Egress Config |
Prometheus Service | Used for monitoring. | /opt/openvidu/config/prometheus.yaml |
Prometheus Config |
Promtail Service | Collects logs and sends them to Loki. | /opt/openvidu/config/promtail.yaml |
Promtail Config |
Environment variables#
Service | Description | Environment Variables |
---|---|---|
Grafana Service | Used for visualizing monitoring data. |
|
OpenVidu Dashboard | Used to visualize OpenVidu Server Rooms, Ingress, and Egress services. |
|
Default App (OpenVidu Call) | Default ready-to-use video conferencing app. |
|
Redis Service | Used as a shared memory database for OpenVidu and Ingress/Egress services. |
If you need to change the Redis password after the installation, check the advanced configuration section. |
MinIO Service | Used for storing recordings. |
If you need to change the MinIO access key and secret key after the installation, check the advanced configuration section. |
MongoDB Service | Used for storing analytics and monitoring data. |
If you need to change the MongoDB username and password after the installation, check the advanced configuration section. |
OpenVidu v2 compatibility Service | Used to enable compatibility with OpenVidu v2. | Check the OpenVidu v2 Compatibility Configuration Parameters to see all the available parameters. |
Warning
Ensure that MASTER_NODE_PRIVATE_IP
and MEDIA_NODE_PRIVATE_IP
are static IP addresses. If these IP addresses change after the installation, you must update the .env
file and the configuration files in the Media Node.
Service | Description | Environment Variables |
---|---|---|
OpenVidu Server | Manages video rooms. |
|
Ingress Service | Imports video from other sources into OpenVidu rooms. |
|
Egress Service | Exports video from OpenVidu rooms for recording or streaming. |
|
Prometheus Service | Used for monitoring. |
|
Promtail Service | Collects logs and sends them to Loki. |
|
OpenVidu Configuration Parameters#
OpenVidu Server is built on top of LiveKit and offers extra configuration options. You can find the configuration file at /opt/openvidu/config/livekit.yaml
. Additional parameters for configuring OpenVidu Server are:
openvidu:
license: <YOUR_OPENVIDU_PRO_LICENSE> # (1)
cluster_id: <YOUR_DOMAIN_NAME> # (2)
analytics: # (3)
enabled: true # (4)
interval: 10s # (5)
expiration: 768h # (6)
mongo_url: <MONGO_URL> # (7)
rtc:
engine: pion # (8)
mediasoup:
debug: "" # (9)
log_level: error # (10)
log_tags: [info, ice, rtp, rtcp, message] # (11)
- Specify your OpenVidu Pro license key. If you don't have one, you can request one here.
- The cluster ID for the OpenVidu deployment. It is configured by default by OpenVidu Installer with the domain name of the deployment.
- The
analytics
configuration should be defined at theopenvidu
level in thelivekit.yaml
file. - This must be set to
true
to send analytics data to MongoDB. If set tofalse
, no analytics data will be sent. - Time interval to send analytics data to MongoDB.
- Time to keep the analytics data in MongoDB. In this example, it is set to 32 days.
- MongoDB URL. This is the connection string to the MongoDB database where the analytics data will be stored.
- The
rtc.engine
parameter is set topion
by default. This is the WebRTC engine used by OpenVidu. Depending on your requirements, you can use:pion
mediasoup
- Global toggle to enable debugging logs from MediaSoup. In most debugging cases, using just an asterisk ("*") here is enough, but this can be fine-tuned for specific log levels. More info.
- Default is an empty string.
- Logging level for logs generated by MediaSoup. More info.
- Valid values are:
debug
,warn
,error
,none
. - Default is
error
.
- Valid values are:
- Comma-separated list of log tag names, for debugging. More info.
- Valid values are:
info
,ice
,dtls
,rtp
,srtp
,rtcp
,rtx
,bwe
,score
,simulcast
,svc
,sctp
,message
. - Default is
[info, ice, rtp, rtcp, message]
.
- Valid values are:
OpenVidu v2 Compatibility Configuration Parameters#
If you are using in COMPOSE_PROFILES
at the .env
file the v2compatibility
profile, you will need to set the following parameters in the .env
file for the OpenVidu V2 Compatibility service:
Parameter |
Description | Default Value |
---|---|---|
V2COMPAT_OPENVIDU_SECRET |
OpenVidu secret used to authenticate the OpenVidu V2 Compatibility service. In the .env file, this value is defined with LIVEKIT_API_SECRET . |
The value of LIVEKIT_API_SECRET in the .env file. |
V2COMPAT_OPENVIDU_WEBHOOK |
true to enable OpenVidu Webhook service. false otherwise. Valid values are true or false . |
false |
V2COMPAT_OPENVIDU_WEBHOOK_ENDPOINT |
HTTP(S) endpoint to send OpenVidu V2 Webhook events. Must be a valid URL. Example: V2COMPAT_OPENVIDU_WEBHOOK_ENDPOINT=http://myserver.com/webhook |
- |
V2COMPAT_OPENVIDU_WEBHOOK_HEADERS |
JSON Array list of headers to send in the OpenVidu V2 Webhook events. Example: V2COMPAT_OPENVIDU_WEBHOOK_HEADERS=["Content-Type: application/json"] |
[] |
V2COMPAT_OPENVIDU_WEBHOOK_EVENTS |
Comma-separated list of OpenVidu V2 Webhook events to send. Example: V2COMPAT_OPENVIDU_WEBHOOK_EVENTS=sessionCreated,sessionDestroyed |
sessionCreated , sessionDestroyed, participantJoined, participantLeft, webrtcConnectionCreated, webrtcConnectionDestroyed, recordingStatusChanged, signalSent (All available events) |
V2COMPAT_OPENVIDU_PRO_AWS_S3_BUCKET |
S3 Bucket where to store recording files. | openvidu |
V2COMPAT_OPENVIDU_PRO_AWS_S3_SERVICE_ENDPOINT |
S3 Endpoint where to store recording files. | http://localhost:9100 |
V2COMPAT_OPENVIDU_PRO_AWS_ACCESS_KEY |
S3 Access Key of the S3 Bucket where to store recording files. | - |
V2COMPAT_OPENVIDU_PRO_AWS_SECRET_KEY |
S3 Secret Key of the S3 Bucket where to store recording files. | - |
V2COMPAT_OPENVIDU_PRO_AWS_REGION |
S3 Region of the S3 Bucket where to store recording files. | us-east-1 |
V2COMPAT_OPENVIDU_RECORDING_PATH |
OpenVidu Recording directory used to save the OpenVidu recording videos when V2COMPAT_OPENVIDU_PRO_RECORDING_STORAGE is set to true . Change it with the folder you want to use from your host. By default, it is bound in the container to /opt/openvidu/recordings |
/opt/openvidu/recordings |
V2COMPAT_OPENVIDU_PRO_RECORDING_STORAGE |
Where to store recording files. Can be 'local' (local storage) or 's3' (S3 compatible storage). | local |
Starting, stopping, and restarting OpenVidu#
For every OpenVidu node, a systemd service is created during the installation process. This service allows you to start, stop, and restart the OpenVidu services easily.
Start OpenVidu
Stop OpenVidu
Restart OpenVidu
Checking the status of services#
You can check the status of the OpenVidu services using the following command:
Depending on the node type, you will see different services running.
The services are operating correctly if you see an output similar to the following and there are no restarts from any of the services:
NAME IMAGE COMMAND SERVICE CREATED STATUS
app docker.io/openvidu/openvidu-call "docker-entrypoint.s…" app 12 seconds ago Up 10 seconds
caddy docker.io/openvidu/openvidu-pro-caddy "/bin/caddy run --co…" caddy 12 seconds ago Up 10 seconds
dashboard docker.io/openvidu/openvidu-pro-dashboard "./openvidu-dashboard" dashboard 12 seconds ago Up 10 seconds
grafana docker.io/grafana/grafana "/run.sh" grafana 11 seconds ago Up 8 seconds
loki docker.io/grafana/loki "/usr/bin/loki -conf…" loki 11 seconds ago Up 9 seconds
mimir docker.io/grafana/mimir "/bin/mimir -config.…" mimir 11 seconds ago Up 9 seconds
minio docker.io/bitnami/minio "/opt/bitnami/script…" minio 11 seconds ago Up 9 seconds
mongo docker.io/mongo "docker-entrypoint.s…" mongo 11 seconds ago Up 9 seconds
openvidu-v2compatibility docker.io/openvidu/openvidu-v2compatibility "/bin/server" openvidu-v2compatibility 12 seconds ago Up 10 seconds
operator docker.io/openvidu/openvidu-operator "/bin/operator" operator 12 seconds ago Up 10 seconds
promtail docker.io/grafana/promtail "/usr/bin/promtail -…" promtail 11 seconds ago Up 9 seconds
redis docker.io/redis "docker-entrypoint.s…" redis 12 seconds ago Up 10 seconds
The services are operating correctly if you see an output similar to the following and there are no restarts from any of the services:
NAME IMAGE COMMAND SERVICE CREATED STATUS
egress docker.io/livekit/egress "/entrypoint.sh" egress 53 seconds ago Up 51 seconds
ingress docker.io/livekit/ingress "ingress" ingress 53 seconds ago Up 52 seconds
openvidu docker.io/openvidu/openvidu-server-pro "/livekit-server --c…" openvidu 53 seconds ago Up 52 seconds
prometheus docker.io/prom/prometheus "/bin/prometheus --c…" prometheus 53 seconds ago Up 51 seconds
promtail docker.io/grafana/promtail "/usr/bin/promtail -…" promtail 53 seconds ago Up 52 seconds
Checking logs#
If any of the services are not working as expected, you can check the logs of the services using the following command:
Replace <service-name>
with the name of the service you want to check. For example, to check the logs of the OpenVidu Server, use the following command:
To check the logs of all services, use the following command:
You can also review your logs using the Grafana dashboard provided with OpenVidu. To access it, go to https://<your-domain.com>/grafana and use the credentials located in /opt/openvidu/.env
to log in. Once inside, navigate to the "Home" section, select "Dashboard", and then click on:
- "OpenVidu > OpenVidu Cluster Nodes Logs": To check the logs of the OpenVidu services organized per node.
- "OpenVidu > OpenVidu Cluster Services Logs": To check the logs of the OpenVidu services organized per service.
Adding Media Nodes#
To add a new Media Node, simply spin up a new VM and run the OpenVidu installer script to integrate it into the existing cluster. Run the installation command on the new Media Node.
Warning
This installation command should be the same as the one you used to install the first Media Node. Make sure to use the same parameters and values as the first Media Node.
In case you've changed the .env
file in the Master Node, you will need to update the .env
file or update the installation command with the new values.
To automate the configuration of new nodes, check this section.
Removing Media Nodes Gracefully#
To stop a Media Node gracefully, you need to stop the containers openvidu
, ingress
, and egress
with a SIGINT
signal. Here is a simple script that you can use to stop all these containers gracefully:
#!/bin/bash
# Stop OpenVidu, Ingress, and Egress containers gracefully (1)
docker container kill --signal=SIGINT openvidu || true
docker container kill --signal=SIGINT ingress || true
docker container kill --signal=SIGINT egress || true
# Wait for the containers to stop (2)
while [ $(docker inspect -f '{{.State.Running}}' openvidu 2>/dev/null) == "true" ] || \
[ $(docker inspect -f '{{.State.Running}}' ingress 2>/dev/null) == "true" ] || \
[ $(docker inspect -f '{{.State.Running}}' egress 2>/dev/null) == "true" ]; do
echo "Waiting for containers to stop..."
sleep 5
done
- This script stops the OpenVidu, Ingress, and Egress containers gracefully. The
true
at the end of each command is to avoid the script from stopping if the container is not running. - This script waits for the containers to stop before exiting.
When all the containers are stopped, you can then stop the systemd service and remove the VM:
Removing Media Nodes Forcefully#
To remove a Media Node forcefully, without considering the rooms, ingress, and egress processes running in the node, you can simply stop the OpenVidu service in the Media Node and delete the VM.
Advanced Configuration#
This section addresses advanced configuration scenarios for customizing your OpenVidu Elastic deployment. It includes automating the installation with personalized settings, enabling or disabling OpenVidu modules, and modifying global parameters such as the domain name, passwords, and API keys.
Automatic installation and configuration of nodes#
For environments like the cloud, where instances are frequently spun up and down, automating the application of custom configurations to Master Node and Media Nodes may be useful for you.
If you need to apply custom configurations to the Master Node, you can use the following script template:
# 1. First install the Master Node (1)
sh <(curl -fsSL http://get.openvidu.io/pro/elastic/latest/install_ov_master_node.sh) \
--node-role='master-node' \
... # Add the rest of the arguments (2)
# 2. Add custom configurations (3)
######### APPLY CUSTOM CONFIGURATIONS #########
# If you want to apply any modification to the configuration files
# of the OpenVidu services at /opt/openvidu, you can do it in this section.
# Example 1: Change Minio public port
yq eval '.apps.http.servers.minio.listen[0] = ":9001"' \
-i /opt/openvidu/config/caddy.yaml
# Example 2: Disable the /dashboard route in Caddy
yq eval 'del(.apps.http.servers.public.routes[] | \
select(.handle[]?.handler == "subroute" and \
.handle[].routes[].handle[].strip_path_prefix == "/dashboard"))' \
-i /opt/openvidu/config/caddy.yaml
######### END CUSTOM CONFIGURATIONS #########
# 3. Start OpenVidu (4)
systemctl start openvidu
- First, install the Master Node using the OpenVidu installer. Check the installation guide for more information.
- Add the parameters you need to install the Master Node. You can find all the available parameters in the installation guide.
- Add the custom configurations you need to apply to the Master Node services. You can use
yq
or other tools to modify the configuration files. You can find more information aboutyq
here. - Start the Master Node.
Note
In case you want to deploy a specific version, just replace latest
with the desired version. For example: 3.0.0
.
Just install the Master Node first with the installer and then run some extra commands to apply the custom configurations. This way, you can automate the process of installing the Master Node and applying custom configurations.
If you need to apply custom configurations to the Media Node, you can use the following script template:
# 1. First install the Media Node (1)
sh <(curl -fsSL http://get.openvidu.io/pro/elastic/latest/install_ov_media_node.sh) \
--node-role='media-node' \
... # Add the rest of the arguments (2)
# 2. Add custom configurations (3)
######### APPLY CUSTOM CONFIGURATIONS #########
# If you want to apply any modification to the configuration files
# of the OpenVidu services at /opt/openvidu, you can do it in this section.
# Example 1: Change the public IP address announced by OpenVidu for WebRTC connections
yq eval '.rtc.node_ip = 1.2.3.4' \
-i /opt/openvidu/config/livekit.yaml
# Example 2: Add a webhook to LiveKit
yq eval '.webhook.urls += ["http://new-endpoint.example.com/webhook"]' \
-i /opt/openvidu/config/livekit.yaml
######### END CUSTOM CONFIGURATIONS #########
# 3. Start OpenVidu (4)
systemctl start openvidu
- First, install the Media Node using the OpenVidu installer. Check the installation guide for more information.
- Add the parameters you need to install the Media Node. You can find all the available parameters in the installation guide.
- Add the custom configurations you need to apply to the Media Node services. You can use
yq
or other tools to modify the configuration files. You can find more information aboutyq
here. - Start the Media Node.
Note
In case you want to deploy a specific version, just replace latest
with the desired version. For example: 3.0.0
.
Just install the Media Node first with the installer and then run some extra commands to apply the custom configurations. This way, you can automate the process of installing the Media Node and applying custom configurations.
Enabling and Disabling OpenVidu Modules#
The COMPOSE_PROFILES
parameter in the .env
file in Master and Media Nodes allows you to enable or disable specific modules in OpenVidu. The following modules can be enabled or disabled:
In case you have installed OpenVidu with the observability
module, you just need to enable the observability
module in the .env
file in all nodes.
Otherwise, you can follow these steps to enable the observability
module:
-
Stop the Master Node, all Media Nodes, and backup the deployment
-
In the Master Node, update the
.env
with the following changes:Add to the
COMPOSE_PROFILES
theobservability
module. Also, make sure to set up theGRAFANA_ADMIN_USERNAME
andGRAFANA_ADMIN_PASSWORD
parameters.If you have only the observability module enabled, your
.env
file should have the following environment variables: -
In the Media Nodes, enable the
observability
module:Add to the
COMPOSE_PROFILES
theobservability
module in the.env
file. If you have only theobservability
module enabled, your.env
file should have the following environment variable:Then, add the following parameter in the
config/livekit.yaml
file: -
Start all Master Nodes and Media Nodes
Disabling the observability
module
If you have the observability
module enabled and you want to disable it, just remove the observability
module from the COMPOSE_PROFILES
parameter in the .env
file of all nodes.
In case you have installed OpenVidu with the app
module, you just need to enable the app
module in the .env
file in all nodes.
Otherwise, you can follow these steps to enable the app
module:
-
Stop the Master Node, all Media Nodes, and backup the deployment
-
In the Master Node, update the
.env
with the following changes:Add to the
COMPOSE_PROFILES
thev2compatibility
module.If you have only the
v2compatibility
module enabled, your.env
file should have the following environment variable: -
In the Media Nodes, update the LiveKit configuration to send webhooks to the V2 Compatibility service
Just add the following parameter in the
config/livekit.yaml
file:Where
<LIVEKIT_API_KEY>
is theLIVEKIT_API_KEY
parameter in the.env
file. -
Start all Master Nodes and Media Nodes
Disabling the app
module
If you have the app
module enabled and you want to disable it, just remove the app
module from the COMPOSE_PROFILES
parameter in the .env
file of all nodes.
In case you have installed OpenVidu without the app
module, you just need to enable the app
module in the .env
file in all nodes.
Otherwise, you can follow these steps to enable the app
module:
-
Stop the Master Node, all Media Nodes, and backup the deployment
-
In the Master Node, update the
.env
with the following changes:Add to the
COMPOSE_PROFILES
theapp
module.If you have only the
app
module enabled, your.env
file should have the following environment variable: -
In the Media Nodes, update the LiveKit configuration to send webhooks to the Default App
Just add the following parameter in the
config/livekit.yaml
file:Where
<LIVEKIT_API_KEY>
is theLIVEKIT_API_KEY
parameter in the.env
file. -
Start all Master Nodes and Media Nodes
Disabling the app
module
If you have the app
module enabled and you want to disable it, just remove the app
module from the COMPOSE_PROFILES
parameter in the .env
file of all nodes.
Global configuration changes#
Some configuration parameters may require modifying multiple configuration files. Below are some examples of advanced configurations and how to apply them:
Info
Usually, this is not needed because the installer takes care of generating all of this parameters. However, it is necessary if any password, credential, or domain change is needed.
Danger
Advanced configurations should be performed with caution. Incorrect configurations can lead to service failures or unexpected behavior.
Before making any changes, make sure to back up your installation by creating a snapshot of your server or by copying the /opt/openvidu/
directory to a safe location. For example:
To change all occurrences of the domain or public IP address in the configuration files, follow these steps:
-
Stop OpenVidu in the Master Node and all Media Nodes and back up the deployment
-
Find the current locations of
DOMAIN_OR_PUBLIC_IP
in your Master NodeWith the following commands, you can find all occurrences of the current domain or public IP address in the configuration files:
sudo su cd /opt/openvidu/ CURRENT_DOMAIN_OR_PUBLIC_IP="$(grep '^DOMAIN_OR_PUBLIC_IP' /opt/openvidu/.env | cut -d '=' -f 2)" grep --exclude-dir=data -IHnr "$CURRENT_DOMAIN_OR_PUBLIC_IP" .
Warning
Keep the value of
CURRENT_DOMAIN_OR_PUBLIC_IP
as you will need it to update the configuration files in the Media Nodes.The output should look similar to the following:
./.env:DOMAIN_OR_PUBLIC_IP=<CURRENT_DOMAIN_OR_PUBLIC_IP> ./config/caddy.yaml: - certificate: /owncert/<CURRENT_DOMAIN_OR_PUBLIC_IP>.cert ./config/caddy.yaml: key: /owncert/<CURRENT_DOMAIN_OR_PUBLIC_IP>.key ./config/caddy.yaml: - <CURRENT_DOMAIN_OR_PUBLIC_IP> ./config/caddy.yaml: - <CURRENT_DOMAIN_OR_PUBLIC_IP> ./config/caddy.yaml: - <CURRENT_DOMAIN_OR_PUBLIC_IP> ./config/caddy.yaml: - <CURRENT_DOMAIN_OR_PUBLIC_IP> ./config/caddy.yaml: - <CURRENT_DOMAIN_OR_PUBLIC_IP> ./config/caddy.yaml: - <CURRENT_DOMAIN_OR_PUBLIC_IP> ./config/promtail.yaml: cluster_id: <CURRENT_DOMAIN_OR_PUBLIC_IP>
Note
Don't worry if some values are different in your output. It varies depending on the parameters you've used to install OpenVidu.
-
Update the Following Files in your Master Node
Based on the output from the previous step, update the following files with the new domain or public IP address:
.env
config/caddy.yaml
config/promtail.yaml
-
Verify the changes in your Master Node
These commands will list all occurrences of the new
DOMAIN_OR_PUBLIC_IP
in the configuration files. The output should match the locations found in the initial search but with the new domain or public IP address. -
Find the current locations of
CURRENT_DOMAIN_OR_PUBLIC_IP
in your Media NodesWith the
CURRENT_DOMAIN_OR_PUBLIC_IP
value obtained in step 2, you can find all occurrences of the current domain or public IP address in the configuration files of the Media Nodes. To do this, connect to each Media Node and run the following command:sudo su cd /opt/openvidu/ CURRENT_DOMAIN_OR_PUBLIC_IP="<CURRENT_DOMAIN_OR_PUBLIC_IP>" grep --exclude-dir=data -IHnr "$CURRENT_DOMAIN_OR_PUBLIC_IP" .
The output should look similar to the following:
-
Update the Following Files in your Media Nodes
Based on the output from the previous step, update the following files with the new domain or public IP address:
config/promtail.yaml
config/livekit.yaml
-
Verify the changes in your Media Nodes
These commands will list all occurrences of the new
DOMAIN_OR_PUBLIC_IP
in the configuration files of the Media Nodes. The output should match the locations found in the initial search but with the new domain or public IP address. -
Ensure to follow from step 5 to 7 for all your Media Nodes
-
Start all Master Nodes and Media Nodes
Some notes on changing the DOMAIN_OR_PUBLIC_IP
parameter:
- If you are using your own certificates, you need to place the new ones at
/opt/openvidu/owncert/<NEW_DOMAIN_OR_PUBLIC_IP>.cert
and/opt/openvidu/owncert/<NEW_DOMAIN_OR_PUBLIC_IP>.key
. - Make sure your new domain is pointing correctly to the machine where OpenVidu is installed.
To change the REDIS_PASSWORD
parameter, follow these steps:
-
Stop OpenVidu in the Master Node and all Media Nodes and back up the deployment
-
Replace at the Master Node the
REDIS_PASSWORD
in the.env
file with your new valueWarning
Keep the previous value of
REDIS_PASSWORD
as you will need it to update the configuration files in the Media Nodes. We will refer to this value as<CURRENT_REDIS_PASSWORD>
. -
Find the current locations of
REDIS_PASSWORD
in your Media NodesWith the
CURRENT_REDIS_PASSWORD
value obtained in step 2, you can find all occurrences of the current Redis password in the configuration files of the Media Nodes. To do this, connect to each Media Node and run the following command: -
Update the Following Files in your Media Nodes
Based on the output from the previous step, update the following files with the new Redis password:
config/egress.yaml
config/ingress.yaml
config/livekit.yaml
-
Verify the changes in your Media Nodes
These commands will list all occurrences of the new
REDIS_PASSWORD
in the configuration files of the Media Nodes. The output should match the locations found in the initial search but with the new Redis password. -
Ensure to follow from step 3 to 5 for all your Media Nodes
-
Start all Master Nodes and Media Nodes
To change the LIVEKIT_API_KEY
and LIVEKIT_API_SECRET
parameters, follow these steps:
-
Stop OpenVidu in the Master Node and all Media Nodes and back up the deployment
-
Replace at the Master Node the
LIVEKIT_API_KEY
andLIVEKIT_API_SECRET
in the.env
file with your new valuesWarning
Keep the previous values of
LIVEKIT_API_KEY
andLIVEKIT_API_SECRET
as you will need them to update the configuration files in the Media Nodes. We will refer to these values as<CURRENT_LIVEKIT_API_KEY>
and<CURRENT_LIVEKIT_API_SECRET>
. -
Find the current locations of
LIVEKIT_API_KEY
andLIVEKIT_API_SECRET
in your Media NodesWith the
CURRENT_LIVEKIT_API_KEY
andCURRENT_LIVEKIT_API_SECRET
values obtained in step 2, you can find all occurrences of the current LiveKit API key and secret in the configuration files of the Media Nodes. To do this, connect to each Media Node and run the following command:sudo su cd /opt/openvidu/ CURRENT_LIVEKIT_API_KEY="<CURRENT_LIVEKIT_API_KEY>" CURRENT_LIVEKIT_API_SECRET="<CURRENT_LIVEKIT_API_SECRET>" grep --exclude-dir=data -IHnr "$CURRENT_LIVEKIT_API_KEY" . grep --exclude-dir=data -IHnr "$CURRENT_LIVEKIT_API_SECRET" .
The output should look similar to the following for
LIVEKIT_API_KEY
:./config/egress.yaml:api_key: <CURRENT_LIVEKIT_API_KEY> ./config/ingress.yaml:api_key: <CURRENT_LIVEKIT_API_KEY> ./config/livekit.yaml: <CURRENT_LIVEKIT_API_KEY>: <CURRENT_LIVEKIT_API_SECRET> ./config/livekit.yaml: api_key: <CURRENT_LIVEKIT_API_KEY>
And for
LIVEKIT_API_SECRET
: -
Update the Following Files in your Media Nodes
Based on the output from the previous step, update the following files with the new values:
config/egress.yaml
config/ingress.yaml
config/livekit.yaml
-
Verify the changes in your Media Nodes
These commands will list all occurrences of the new
LIVEKIT_API_KEY
andLIVEKIT_API_SECRET
in the configuration files of the Media Nodes. The output should match the locations found in the initial search but with the new values. -
Ensure to follow from step 3 to 5 for all your Media Nodes
-
Start all Master Nodes and Media Nodes
To change the MINIO_ACCESS_KEY
and MINIO_SECRET_KEY
parameters, follow these steps:
-
Stop OpenVidu in the Master Node and all Media Nodes and back up the deployment
-
Replace at the Master Node the
MINIO_ACCESS_KEY
andMINIO_SECRET_KEY
in the.env
file with your new valuesTake into account that if you are using the
v2compatibility
module inCOMPOSE_PROFILES
, you will need to change theV2COMPAT_OPENVIDU_PRO_AWS_ACCESS_KEY
andV2COMPAT_OPENVIDU_PRO_AWS_SECRET_KEY
parameters in the.env
file.Warning
Keep the previous values of
MINIO_ACCESS_KEY
andMINIO_SECRET_KEY
as you will need them to update the configuration files in the Media Nodes. We will refer to these values as<CURRENT_MINIO_ACCESS_KEY>
and<CURRENT_MINIO_SECRET_KEY>
. -
Find the current locations of
MINIO_ACCESS_KEY
andMINIO_SECRET_KEY
in your Media NodesWith the
CURRENT_MINIO_ACCESS_KEY
andCURRENT_MINIO_SECRET_KEY
values obtained in step 2, you can find all occurrences of the current MinIO access key and secret in the configuration files of the Media Nodes. To do this, connect to each Media Node and run the following command: -
Update the Following Files in your Media Nodes
Based on the output from the previous step, update the following files with the new values:
config/egress.yaml
-
Verify the changes in your Media Nodes
These commands will list all occurrences of the new
MINIO_ACCESS_KEY
andMINIO_SECRET_KEY
in the configuration files of the Media Nodes. The output should match the locations found in the initial search but with the new values. -
Ensure to follow from step 3 to 5 for all your Media Nodes
-
Start all Master Nodes and Media Nodes
To change the MONGO_ADMIN_USERNAME
and MONGO_ADMIN_PASSWORD
parameters, follow these steps:
-
Stop OpenVidu in the Master Node and all Media Nodes and back up the deployment
-
Replace at the Master Node the
MONGO_ADMIN_USERNAME
andMONGO_ADMIN_PASSWORD
in the.env
file with your new valuesWarning
Keep the previous values of
MONGO_ADMIN_USERNAME
andMONGO_ADMIN_PASSWORD
as you will need them to update the configuration files in the Media Nodes. We will refer to these values as<CURRENT_MONGO_ADMIN_USERNAME>
and<CURRENT_MONGO_ADMIN_PASSWORD>
. -
Find the current locations of
MONGO_ADMIN_USERNAME
andMONGO_ADMIN_PASSWORD
in your Media NodesWith the
CURRENT_MONGO_ADMIN_USERNAME
andCURRENT_MONGO_ADMIN_PASSWORD
values obtained in step 2, you can find all occurrences of the current MongoDB admin username and password in the configuration files of the Media Nodes. To do this, connect to each Media Node and run the following command:sudo su cd /opt/openvidu/ CURRENT_MONGO_ADMIN_USERNAME="<CURRENT_MONGO_ADMIN_USERNAME>" CURRENT_MONGO_ADMIN_PASSWORD="<CURRENT_MONGO_ADMIN_PASSWORD>" grep --exclude-dir=data -IHnr "$CURRENT_MONGO_ADMIN_USERNAME" . grep --exclude-dir=data -IHnr "$CURRENT_MONGO_ADMIN_PASSWORD" .
-
Update the Following Files in your Media Nodes
Based on the output from the previous step, update the following files with the new values:
config/livekit.yaml
-
Verify the changes in your Media Nodes
These commands will list all occurrences of the new
MONGO_ADMIN_USERNAME
andMONGO_ADMIN_PASSWORD
in the configuration files of the Media Nodes. The output should match the locations found in the initial search but with the new values. -
Ensure to follow from step 3 to 5 for all your Media Nodes
-
Start all Master Nodes and Media Nodes
Uninstalling OpenVidu#
To uninstall any OpenVidu Node, just execute the following commands: