Technical Tip: Override the deletion of a user-created dashboard folder
| Description | This article describes how to override the deletion of a user-created dashboard folder. |
| Scope | FortiSIEM v7.x+. |
| Solution | In FortiSIEM, only the original creator of a dashboard has permission to modify or delete it. To override and manually delete a dashboard folder, follow the steps below:
psql -U phoenix phoenixdb
SELECT id FROM ph_group WHERE display_name = 'dashBoardName';
SELECT * FROM ph_group_item WHERE group_id = 'idFromPreviousCommand';
\q
DELETE FROM ph_group WHERE id = 'idFromPreviousCommand'; DELETE FROM ph_group_item WHERE id = 'idFromPreviousCommand'; Lastly, confirm removal from the GUI.
Related document: |
