Uninstall Plugin
How to completely remove the Konrado.AI server plugin from your server
Follow this guide to remove the Konrado.AI server plugin from a server and delete the integration from Konrado.AI.
Estimated time: 5 minutes
Uninstalling removes the local plugin and stops Konrado.AI from reading server information for this integration.
Before You Start
- Root SSH access to the server.
- Confirmation that no active support workflow depends on this server integration.
- Access to Konrado.AI Integrations to delete the integration record after uninstalling.
Stop and Disable Services
Log in to the server as root, then stop both services and prevent them from starting on boot:
systemctl stop konrado-server konrado-root
systemctl disable konrado-server konrado-rootExpected output includes:
Removed "/etc/systemd/system/multi-user.target.wants/konrado-server.service".
Removed "/etc/systemd/system/multi-user.target.wants/konrado-root.service".Remove Service Files
Delete the systemd unit files and reload systemd:
rm /etc/systemd/system/konrado-server.service /etc/systemd/system/konrado-root.service
systemctl daemon-reloadVerify the services are no longer known:
systemctl status konrado-server konrado-rootExpected output:
Unit konrado-server.service could not be found.
Unit konrado-root.service could not be found.Remove Installation Files
Delete the plugin installation directory:
rm -rf /opt/KonradoAi/Verify it is gone:
test ! -d /opt/KonradoAi && echo "KonradoAi directory removed"Expected output:
KonradoAi directory removedOptional Cleanup
Remove the dedicated system user:
userdel konrado.aiIf the user was already removed, userdel may print that the user does not exist.
Remove the runtime socket directory:
rm -rf /var/run/konrado-ai/Remove from Konrado.AI
Open Integrations in Konrado.AI, find the server integration, and click Delete.
Verify
The integration should no longer appear in Konrado.AI. On the server, systemctl status konrado-server konrado-root should report that both units could not be found.