Slackbot
07/12/2023, 1:12 PMJohn Kowtko
07/12/2023, 2:22 PM$ nohup ./bin/start-druid > /tmp/logfile 2>&1 &
I just tried it on my Mac install and it seems to work fine.Amir Naik
07/12/2023, 5:52 PMSiddharth Gautam
07/12/2023, 9:21 PM[Unit]
Description=Druid Daemon
Documentation=<http://druid.io|http://druid.io>
Requires=network.target
After=network.target
[Service]
Type=simple
WorkingDirectory=/home/sgautam/Druid/apache-druid-26.0.0
User=sgautam
Group=sgautam
ExecStart=/home/sgautam/Druid/apache-druid-26.0.0/bin/start-druid
[Install]
WantedBy=default.target
Save this as druid.service in /etc/systemd/system/ and then do,
sudo systemctl daemon-reload
sudo systemctl start druidJohn Kowtko
07/12/2023, 10:30 PM