Orphaned Dashboard

We have a dashboard that was created by a user that has since been deleted. Nobody else has access to the dashboard, and we need to know how this can be deleted?

I guess you could delete the row from your librenms database.

login to your mysql server.

use name-of-database;

Find the dashboard_id number for the row in:

select * from dashboards;

Delete the row with that number:

DELETE FROM dashboards WHERE dashboard_id = number;

Or change the value of access to 2 (shared read/write) for the row and try to delete it from the website.

Update dashboards set access = ‘2’ where dashboard_id = number;

2 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.