We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How can I run thins in the background with a 'screen'? How can I register it as a service in Linux and use systemd?
The text was updated successfully, but these errors were encountered:
I run the duologsync utility as a service with systemd without any problems, you just need to create the systemd service file.
duologsync
If you want an example, here is the one I'm currently using:
#/etc/systemd/system/duologsync.service # [Unit] Description=Duo Log Sync After=network-online.target Requires=network-online.target [Service] Type=simple User=duologsync Group=duologsync ExecStart=/var/opt/duo_log_sync/.venv/bin/duologsync /var/opt/duo_log_sync/config/config.yml Restart=on-failure RestartSec=5s KillSignal=SIGINT [Install] WantedBy=multi-user.target
In my case I created the user and group duologsync and I'm running it from the /var/opt/duo_log_sync, using a .venv.
/var/opt/duo_log_sync
.venv
Sorry, something went wrong.
If this could be added to the Readme that would be great.
@leandrojmp the user/group creation doesn't cause a permissions issue with Python?
@SysAdminforCoffee I didn't had any issues, I was using it with a venv owned by the same user.
I'm not using this tool anymore, since I'm using Elasticsearch, I moved to the Elastic Agent Duo integration.
No branches or pull requests
How can I run thins in the background with a 'screen'?
How can I register it as a service in Linux and use systemd?
The text was updated successfully, but these errors were encountered: