Skip to content

IT-Blogs.com

Find your IT solution here
Menu
  • Dashboard
    • JBoss DashBuilder
  • Development
    • Node.js – Restful with Express framework + MySQL
    • Spring MVC + Hibernate with AngularJS
    • Spring Restful (JSON) + Hibernate with AngularJS
  • Mobile
    • IONIC with Restful API
  • NoSQL
    • Cloud MongoDB Stitch + CRUD with JS
  • Search Engine
    • Solr
August 26, 2017
HomeDashboardJBoss DashBuilderHow to setup login username and password? No ratings yet.

How to setup login username and password?

By Kelvin Hui JBoss DashBuilder  0 Comments

By default, it is using Tomcat user to login. You can add new role and user under C:\{your_tomcat_installed_path}\conf\tomcat-users.xml

 

<role rolename=”admin”/>

 <role rolename=”user”/>

<user username=”root”   password=”root”  roles=”admin”/>

<user username=”demo”   password=”demo”  roles=”user”/>

 

For DashBuilder, it supports 2 different roles, normal user and admin user. Admin user is using to create/update your dashboards / reports. Normal user is for general users with read-only access. So, we will login as admin user in order to update the settings and create new dashboard.

 

After updating the tomcat-users.xml, remember to restart the Tomcat server so that the new roles and users will be effective. Now, you can try login as normal and admin user to see the differences.

Please rate this

Tags:login dashbuilder

Related Posts

What is Panel and How to add Panel?

How to create data connection?

DashBuilder Installation

About Author

Kelvin Hui

Recent Posts

  • noSQL Search Query
  • Bulk Operations
  • JS GUI for Simple CRUD
  • How to create application, database and collection?
  • Why MongoDB?
  • Example 5: Client Login / Logout With $http.post()
  • Example 4: Showing Promotion With QR Code and Push Notification
  • Example 3: Products Show Room With Searching and Sorting
  • Example 2: Listing Shop Integrating With Google Map
  • Example 1: Show Company Background With Simple $http.get()

IT-Blogs.com Copyright © 2025.
Back to Top ↑