Uninstall Observium Ubuntu
Reload Apache:
By default, Observium installs into the /opt/observium directory. Deleting this folder removes the core application, the frontend PHP scripts, and all collected Round Robin Database (RRD) metrics.
Now that the services are disconnected, you can remove the actual application directory. By default, Observium is installed in /opt/observium . sudo rm -rf /opt/observium Use code with caution.
Additionally, if you have Observium’s cron jobs running (commonly scheduled tasks like discovery and polling), you can temporarily disable them by commenting out or removing the file:
First, log into your database:
Remove the file: sudo rm /etc/apache2/sites-available/observium.conf Restart Apache: sudo systemctl restart apache2 4. Drop the Database
: Stop MariaDB or MySQL to prevent further data writing. sudo systemctl stop mariadb or sudo systemctl stop mysql . 2. Remove Scheduled Tasks (Cron Jobs)
RRDtool and SNMP tools are heavy dependencies. If you installed them solely for Observium, you can remove them:
: To prevent users from accessing the interface during the removal, stop your web server (e.g., sudo systemctl stop apache2 2. Remove Database and Users uninstall observium ubuntu
DROP DATABASE IF EXISTS observium; DROP USER IF EXISTS 'observium'@'localhost'; FLUSH PRIVILEGES; EXIT;
Here is your step-by-step guide to purging Observium and its data from your Ubuntu system. 1. Back Up Your Data (Optional)
How to Completely Uninstall Observium from Ubuntu Whether you are migrating to a different monitoring solution or simply cleaning up your server, uninstalling Observium requires more than just removing a few files. Because Observium relies on a stack of dependencies—including a web server, a database, and several PHP modules—a proper cleanup ensures no orphan processes or security holes are left behind.
This public link is valid for 7 days and shares a thread, including any personal information you added. This link or copies made by others cannot be deleted. If you share with third parties, their policies apply. Can’t copy the link right now. Try again later. Reload Apache: By default, Observium installs into the
Note: -r will attempt to remove the user’s home and mail spool, but since Observium had no real home directory, it just cleans up the system entries.
This public link is valid for 7 days and shares a thread, including any personal information you added. This link or copies made by others cannot be deleted. If you share with third parties, their policies apply. Can’t copy the link right now. Try again later.
sudo rm -rf /opt/observium /var/www/observium /var/log/observium sudo mysql -u root -p -e "DROP DATABASE IF EXISTS observium; DROP USER IF EXISTS 'observium'@'localhost'; FLUSH PRIVILEGES;" sudo rm /etc/apache2/sites-available/observium.conf /etc/apache2/sites-enabled/observium.conf sudo a2dissite observium.conf || true sudo systemctl reload apache2