If I re-start the Pi whilst the PC is running, I can access the Cumulus Dashboard from the PC Firefox browser......great
If I re-start the PC whilst the Pi is running, I cannot connect to the Cumulus Dashboard (meanwhile the Pi is still running and sending data to Wunderground).
Why can I not re-connect to (PI-wifi-IP):8998 only after a PC re-boot?
When I setup the Pi I followed the "sticky" and did the
Code: Select all
"sudo crontab -e"Code: Select all
"# Start Cumulus as background task 30s after reboot (delay to allow WiFi to startup)
@reboot (sleep 30;cd /home/pi/CumulusMX;sudo mono CumulusMX.exe) &
# Reboot each day at 0253
53 02 * * * sudo reboot"that
If I do "sudo mono CumulusMX.exe" at root, I get the response "No such file or directory"I assume you started Cumulus as root using "sudo mono CumulusMX.exe", because the 200 code means "Such a response means the remote resource located at the URL doesn't listen or at least can't respond to a websocket request."., which would happen if Cumulus could not open the listening port because it was started incorrectly.
Have I set up something incorrectly here?