I'm trying to move my Domoticz stuff to a Raspberry with Buster. Domoticz I've installed without a prroblem, but the Mosquitto broker I cannot get it to run as a service:
Code: Select all
sudo service mosquitto status
[quote]● mosquitto.service - Mosquitto MQTT v3.1/v3.1.1 Broker
Loaded: loaded (/lib/systemd/system/mosquitto.service; enabled; vendor preset: enabled)
Active: failed (Result: exit-code) since Sat 2020-04-11 23:21:36 CEST; 1min 12s ago
Docs: man:mosquitto.conf(5)
man:mosquitto(8)
Process: 2806 ExecStart=/usr/sbin/mosquitto -c /etc/mosquitto/mosquitto.conf (code=exited, status=
Main PID: 2806 (code=exited, status=1/FAILURE)
Apr 11 23:21:36 raspberrypi systemd[1]: mosquitto.service: Service RestartSec=100ms expired, schedul
Apr 11 23:21:36 raspberrypi systemd[1]: mosquitto.service: Scheduled restart job, restart counter is
Apr 11 23:21:36 raspberrypi systemd[1]: Stopped Mosquitto MQTT v3.1/v3.1.1 Broker.
Apr 11 23:21:36 raspberrypi systemd[1]: mosquitto.service: Start request repeated too quickly.
Apr 11 23:21:36 raspberrypi systemd[1]: mosquitto.service: Failed with result 'exit-code'.
Apr 11 23:21:36 raspberrypi systemd[1]: Failed to start Mosquitto MQTT v3.1/v3.1.1 Broker.[/quote]
If I run
Code: Select all
/usr/sbin/mosquitto
If I run:1586640645: mosquitto version 1.6.8 starting
1586640645: Using default config.
1586640645: Opening ipv4 listen socket on port 1883.
1586640645: Opening ipv6 listen socket on port 1883.
1586640645: New connection from 127.0.0.1 on port 1883.
1586640645: New client connected from 127.0.0.1 as mqttjs_8ca1d8ba (p2, c1, k60, u'shelly2').
1586640652: New connection from 127.0.0.1 on port 1883.
1586640652: New client connected from 127.0.0.1 as domoticz (p2, c1, k60, u'shelly2').
Code: Select all
/usr/sbin/mosquitto -c /etc/mosquitto/mosquitto.conf
Has anybody a hint?