This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Accept
Reject

NetWitness Community

  • Home
  • Products
    • NetWitness Platform
      • Advisories
      • Documentation
        • Platform Documentation
        • Known Issues
        • Security Fixes
        • Hardware Documentation
        • Threat Content
        • Unified Data Model
        • Videos
      • Downloads
      • Integrations
      • Knowledge Base
    • NetWitness Cloud SIEM
      • Advisories
      • Documentation
      • Knowledge Base
    • NetWitness Detect AI
      • Advisories
      • Documentation
      • Knowledge Base
    • NetWitness Investigator
    • NetWitness Orchestrator
      • Advisories
      • Documentation
      • Knowledge Base
      • Legacy NetWitness Orchestrator
        • Advisories
        • Documentation
  • Community
    • Blog
    • Discussions
    • Events
    • Idea Exchange
  • Support
    • Case Portal
      • Create New Case
      • View My Cases
      • View My Team's Cases
    • Community Support
      • Getting Started
      • News & Announcements
      • Community Support Forum
      • Community Support Articles
    • Product Life Cycle
    • Support Information
    • General Security Advisories
  • Training
    • Blog
    • Certification Program
    • Course Catalog
    • New Product Readiness
    • On-Demand Subscriptions
    • Student Resources
    • Upcoming Events
  • Technology Partners
  • Trust Center
Sign InRegister Now
cancel
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for 
Search instead for 
Did you mean: 
NetWitness Knowledge Base
Find answers to your questions and identify resolutions for known issues with knowledge base articles written by NetWitness experts.
cancel
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for 
Search instead for 
Did you mean: 
Announcement Banner

The email address for NetWitness Community notifications is changing

View Details
  • NetWitness Community
  • Knowledge Base
  • Delete custom dashboards in mongo in RSA NetWitness Platform 11.x
  • Options
    • Subscribe to RSS Feed
    • Bookmark
    • Subscribe
    • Email to a Friend
    • Printer Friendly Page
    • Report Inappropriate Content

The content you are looking for has been archived. View related content below.

Delete custom dashboards in mongo in RSA NetWitness Platform 11.x

Article Number

000001095

Applies To

RSA Product Set: NetWitness Platform
RSA Product/Service Type: NetWitness UI
RSA Version/Condition: 11.x
Platform: CentOS
O/S Version: 7

Issue

The following steps will allow you to go into mongodb and delete any created custom dashboards, especially if you are unable to delete the dashboards directly from the RSA NetWitness UI, due to not visible or permissions does not allow.

Resolution

  1. From the Admin Server, log into mongodb.
    
    # mongo admin -u deploy_admin -p <mongo password>
  2. Display the list of databases and choose the sa database.
    
    > show dbs
    > use sa
  3. Display the list of collections and choose the dashboard collection. This displays information about each dashboard that is currently in your RSA NetWitness UI.
    
    > show collections
    > db.dashboard.find().pretty()
  4. Find your custom dashboard within the collection. The name of a dashboard is located under the "title" field for that dashboard. For example, if the name of a custom dashboard is "test," then you would see : "title" : "test" for that dashboard.
  5. Run the following command to remove the custom dashboard from the collection.
    
    > db.dashboard.remove({"title":"<title of custom dashboard>"})
    
    ex. db.dashboard.remove({"title":"test"})
  6. Run the following command to confirm that the custom dashboard was removed. This should not produce any output if the dashboard was successfully removed.
    
    > db.dashboard.find({"title":"<title of custom dashboard>"})
    
    ex. db.dashboard.find({"title":"test"})
  7. Go into the RSA NetWitness UI > Monitor > Dashboards and navigate through your list of dashboards to confirm that the custom dashboard has been removed from the UI, as well.
Tags (12)
  • Customer Support Article
  • KB Article
  • Knowledge Article
  • Knowledge Base
  • NetWitness
  • NetWitness Platform
  • NW
  • RSA NetWitness
  • RSA NetWitness Platform
  • RSA Security Analytics
  • Security Analytics
  • SIEM
0 Likes
Was this article helpful? Yes No
No ratings

In this article

Version history
Last update:
‎2022-02-10 02:34 PM
Updated by:
Administrator nwinfotech Administrator

Related Content

Powered by Khoros
  • Blog
  • Events
  • Discussions
  • Idea Exchange
  • Knowledge Base
  • Case Portal
  • Community Support
  • Product Life Cycle
  • Support Information
  • About the Community
  • Terms & Conditions
  • Privacy Statement
  • Acceptable Use Policy
  • Employee Login
© 2022 RSA Security LLC or its affiliates. All rights reserved.