Player reports: “XMR Status - Connected. Waiting for messages.”
However, there is no possibility to obtain a copy of the screen from the player upon request.
I don’t quite understand what “XMR Private address”, why it where is not in version for Docker.
What should we to do and write in our case?
Maybe this is important: we have two copies of the CMS on different subdomains of the main site, each with its own root directory and its own database, but external IP is the same. One of them is demo version, another - working version.
So the correct values to fill in will depend on how you’ve configured your XMR server.
If you’re running it on the same computer as the CMS (and it is running), then you need to see what ports you’ve configured the public and private connections to use.
You can then work out what to fill in in the CMS.
XMR Private Address isn’t there in a Docker CMS because we know that’s always going to be the container attached to the system, and so it’s pre-filled for you in that scenario.
So, what have you got in your XMR configuration file?
Your config.json is wrong. The software is telling you it can’t bind to an interface called demo.melina.ru as I suspect your computer doesn’t have a network interface with that name.
You can either set:
"pubOn": ["tcp://0.0.0.0:9505"],
To listen on all network interfaces, or you can set the IP address or name of one of your network interfaces to bind to just that one interface. If you want to bind to two or more interfaces, but not all, you can simply add to the pubOn array and we will bind to all the interfaces you say:
From the Player side, as long as tcp traffic going to demo.melna.ru port 9505 ends up getting to the interface XMR is listening on, then that is already configured correctly.