...
...
...
...
...
...
...
...
...
...
...
...
...
This guide will show you how to run Akraino apps on TKE of Tencent Cloud.
...
Configure your cluster name, location, and network. If you do not have a private network, you can click Create a new one now to create.
Select your billing model, node network, and machine model, and click Next step
...
Code Block | ||||
---|---|---|---|---|
| ||||
# Configure repo cd /opt yum-config-manager \ --add-repo \ https://download.docker.com/linux/centos/docker-ce.repo # Install docker yum install -y docker-ce docker-ce-cli containerd.io systemctl enable docker # Install docker-compose curl -L https://github.com/docker/compose/releases/download/1.25.0/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose chmod +x /usr/local/bin/docker-compose docker-compose --version |
Install Openvidu
Code Block |
---|
curl https://s3-eu-west-1.amazonaws.com/aws.openvidu.io/install_openvidu_2.13.0.sh | bash |
Configuration
Edit file .env
, add your host public IP and admin password.
Code Block | ||||
---|---|---|---|---|
| ||||
vi /opt/openvidu/.env # Add your host IP and admin password OPENVIDU_DOMAIN_OR_PUBLIC_IP= $your_host_IP OPENVIDU_SECRET= $admin_PW |
Start Openvidu
Code Block | ||||
---|---|---|---|---|
| ||||
cd /opt/openvidu/ ./openvidu start |
...