sudo rm /etc/nginx/sites-enabled/observium sudo rm /etc/nginx/sites-available/observium sudo systemctl restart nginx Delete the Observium cron file:
DROP DATABASE observium; DROP USER 'observium'@'localhost'; FLUSH PRIVILEGES; EXIT; Delete the main installation directory (default location): uninstall observium ubuntu
Objective: Remove Observium, its web interface, database, and related services from an Ubuntu system. DROP USER 'observium'@'localhost'
sudo systemctl stop observium poller.service sudo systemctl disable observium poller.service sudo systemctl stop apache2 # or nginx, if used Log into MySQL/MariaDB and remove the Observium database and user: its web interface
sudo mysql -u root -p Inside the MySQL prompt, execute:
sudo rm -rf /opt/observium Also remove configuration files if stored elsewhere:
web-wc01