rstrouse on master
Remove features that are not ac… (compare)
Edit nano /etc/systemd/system/homebridge.service
and add these lines
TimeoutStartSec=infinity
ExecStartPre=/bin/sleep 30
this will delay the service how ever many seconds you put
Ok, I'm rather confused. I have njspc running on my rpi ubuntu installation. The server is running on port 4200 and log messages show it has successfully found the pool equipment.
I am running dashboard on port 80 (which I have set to allow).
I can reach the dashboard, but it shows disconnected from the server.
When I search for the server, it finds the server running on port 4200.
But after applying the setting, it still shows disconnected.
Once I managed to get it to show the pool and control it, but now it consistently does not work after a reboot.
Any thoughts?
which node
_service_dir=`find ~ -type d -name nodejs-poolController`
_node_cmd=`which node`
_node_user=`whoami`
_service_file="poolController.service"
_service_descr="NodeJS Pool Controller"
_service_doc="https://github.com/tagyoureit/nodejs-poolController/"
cat <<EOF > ${_service_file}
[Unit]
Description=${_service_descr}
Documentation=${_service_doc}
After=network.target
[Service]
Environment=NODE_ENV=production
Type=simple
User=${_node_user}
WorkingDirectory=${_service_dir}
ExecStart=${_node_cmd}
Restart=on-failure
RestartSec=15s
[Install]
WantedBy=multi-user.target
EOF
sudo cp ${_service_file} /etc/systemd/system/
sudo systemctl daemon-reload
sudo systemctl enable `echo ${_service_file} | awk -F . '{print$1}'`
sudo systemctl start `echo ${_service_file} | awk -F . '{print$1}'`
sudo -n journalctl -o cat -n 2500 -f -u `echo ${_service_file} | awk -F . '{print$1}'`
Hi all... PSA!
We pushed up 7.0.0 to the master
branch. REM/dashPanel have also been updated to 7.0.0. Moving forward, we will be making all commits directly to the master branch and no longer doing development in the next branch. If you have been on the next branch now is the time to switch over to master.
You'll also notice that webClient is missing from that list. It hasn't gotten any love in the past ~7 months and I've previously hinted that it's going away. It's now officially deprecated so if you are still on webClient now is the time to move over to dashPanel.
Version 7 brings much improved connectivity between REM and njsPC. Setup has been streamlined between the two and there have been significant improvements in using njsPC + REM as a standalone controller/replacement for a commercial OCP (outdoor control panel).