Can't use openvidu recording module

Hi All, When I tried to use the recording module, Got the below exception and openvidu server is not starting at all,

I installed the docker and added user to the docker group, Can anyone explain, what I’m doing wrong here, Thanks in advance…

Hello @Venkata_Naga_Ramu_Gu

First of all, to launch OpenVidu CE enabling recording you can read the OpenVidu recording documentation.

Secondly, as you can see in your terminal logs:

You need Docker CE installed in this machine to enable OpenVidu recording service

Thanks for quick reply @CSantosM
I’m launching the server jar with recording enabled and Docker CE is installed in my machine as you mentioned in the Openvidu Deployment

Try with this:

$ sudo usermod -aG docker ubuntu

But, I have only one user available, which is root

Issue solved, my docker daemon is not running one the port 80.

Setting docker daemon to run on port 80 solved the issue.

export DOCKER_HOST=tcp://127.0.0.1:80

Thanks