Sudo reboot -> Failed to talk to init daemon

initreboot

On my Raspberry Pi runs jessie. After installing mosquitto I can not run sudo reboot anymore. This error appears: "Failed to talk to init daemon.". What could be the problem? I have already uninstalled Mosquitto.
Many Thanks!

pi@fhem:~ $ sudo reboot

Failed to talk to init daemon.

Best Answer

Try:

sudo reboot -f

-f, --force Force immediate halt, power-off, reboot. Do not contact the init system.

or

sudo shutdown -r now
Related Question