Quick Uninstall
- Deactivate your license (so you can use it elsewhere)
- Stop the service
- Remove all files and data
- Remove the catops user
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Remove CatOps Hub from your server
curl -fsSL https://get.catops.app/hub.sh | sudo sh -s -- -u
sudo cp -r /opt/catops/pb_data ~/catops-backup/
# Deactivate license first (frees up your activation slot)
sudo -u catops /opt/catops/catops-hub deactivate
# Stop service
sudo systemctl stop catops-hub
sudo systemctl disable catops-hub
# Remove systemd files
sudo rm -f /etc/systemd/system/catops-hub.service
sudo rm -f /etc/systemd/system/catops-hub-update.service
sudo rm -f /etc/systemd/system/catops-hub-update.timer
sudo systemctl daemon-reload
# Remove files
sudo rm -rf /opt/catops
sudo rm -rf /home/catops/.catops
# Remove user (optional)
sudo userdel -r catops
curl -fsSL https://get.catops.app/hub.sh | sudo sh