This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

config sync failed for mosaic
#8
(06.12.2023, 13:17)Andrea Becagli Wrote: ah ok that makes more sense. I have the latest available 20230607.

Might this be a problem with TCP ports? Because the whole system is under a LTE Modem

Run this script once
Code:
function checktcp(ip, port)
  local sock = require('socket').tcp()
  sock:settimeout(1)
  local res, err = sock:connect(ip, port)
  sock:close()
  return res, err
end

-- change IP/PORT as needed
res, err = checktcp('remote.logicmachine.net', 8883)
if res then
  log('connect OK')
else
  log('connect ERROR', err)
end
And then once more but change port to 443
send logs
------------------------------
Ctrl+F5
Reply


Messages In This Thread
RE: config sync failed for mosaic - by Daniel - 06.12.2023, 11:22
RE: config sync failed for mosaic - by Daniel - 06.12.2023, 12:17
RE: config sync failed for mosaic - by Daniel - 06.12.2023, 13:10
RE: config sync failed for mosaic - by Daniel - 06.12.2023, 13:21
RE: config sync failed for mosaic - by Daniel - 06.12.2023, 13:28

Forum Jump: