Replies: 2 comments
-
create and run the following bash script as the #!/usr/bin/env bash
certdir='/etc/ssl/tactical'
CERT_PRIV_KEY=${certdir}/key.pem
CERT_PUB_KEY=${certdir}/cert.pem
local_settings='/rmm/api/tacticalrmm/tacticalrmm/local_settings.py'
certs="$(
cat <<EOF
CERT_FILE = "${CERT_PUB_KEY}"
KEY_FILE = "${CERT_PRIV_KEY}"
EOF
)"
echo "${certs}" | tee --append $local_settings >/dev/null
sudo systemctl restart rmm daphne |
Beta Was this translation helpful? Give feedback.
0 replies
-
It works! You're a legend! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have TRMM installed on Debian 12 with --insecure switch, but Agent Count is always zero.
Daphne service is running and I did clear the cache multiple times.
Any idea what the issue is??
Beta Was this translation helpful? Give feedback.
All reactions