DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports Events Over 2 million developers have joined DZone. Join Today! Thanks for visiting DZone today,
Edit Profile Manage Email Subscriptions Moderation Admin Console How to Post to DZone Article Submission Guidelines
View Profile
Sign Out
Refcards
Trend Reports
Events
Zones
Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Partner Zones AWS Cloud
by AWS Developer Relations
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Partner Zones
AWS Cloud
by AWS Developer Relations
Building Scalable Real-Time Apps with AstraDB and Vaadin
Register Now

Trending

  • Tomorrow’s Cloud Today: Unpacking the Future of Cloud Computing
  • Redefining DevOps: The Transformative Power of Containerization
  • Building and Deploying Microservices With Spring Boot and Docker
  • Auto-Scaling Kinesis Data Streams Applications on Kubernetes

Trending

  • Tomorrow’s Cloud Today: Unpacking the Future of Cloud Computing
  • Redefining DevOps: The Transformative Power of Containerization
  • Building and Deploying Microservices With Spring Boot and Docker
  • Auto-Scaling Kinesis Data Streams Applications on Kubernetes
  1. DZone
  2. Data Engineering
  3. Data
  4. Hazelcast Mancenter: Manage Your Cache

Hazelcast Mancenter: Manage Your Cache

Dheeraj Gupta user avatar by
Dheeraj Gupta
CORE ·
Jun. 16, 20 · Tutorial
Like (5)
Save
Tweet
Share
12.81K Views

Join the DZone community and get the full member experience.

Join For Free

In my last article,  Hazelcast Setup using Java, we learned about how to set up the Hazelcast cluster and client using Spring Boot (Java). Continuing from there today, we will learn about the Hazelcast Management Center. This tool helps us:

  • To monitor caches.
  • To take thread dumps.
  • To update maps.
  • To check maps structure.
  • To update maps configurations.

Manage users

Hazelcast Management Center Setup

To set up the Hazelcast Management center download the Hazelcast WAR file from https://hazelcast.org/imdg/download/ or for versions lower than 3.8, it is usually packaged with the Hazelcast IMDG. To start with the management center:

  • Extract the downloaded file.
  • Open a terminal and move to the path till the start script file in man center
    cd ~/<path where mancenter file is extracted>/hazelcast-management-center-
    3.11
  • Run the start script by ./start.sh command
  • Your management center will start running by default on port 8080/mancenter.
    you can change the port at the start.sh file.

 



0
 Advanced issue found
▲

 

localhost:8080/hazelcast-mancenter

Configuration in the Application

In the configuration file, add these two lines to enable the management center and describe the port

Java
xxxxxxxxxx
1
13
 
1
Config config = new XmlConfigBuilder().build();
2
3
config.getGroupConfig().setName(username);
4
5
config.getGroupConfig().setPassword(password);
6
7
//Enabling the mancenter
8
config.getManagementCenterConfig().setEnabled(true); 
9
10
//defining port on which mancenter has been started
11
config.getManagementCenterConfig().setUrl("http://localhost:8080/mancenter");
12
13
Hazelcast.newHazelcastInstance(config);


Woosh! the Hazelcast management center setup has been done. We can now check our maps online at the localhost:8080/mancenter. Do try this if you have already configured your Hazelcast server to view your data in the cache.

Hazelcast Cache (computing)

Opinions expressed by DZone contributors are their own.

Trending

  • Tomorrow’s Cloud Today: Unpacking the Future of Cloud Computing
  • Redefining DevOps: The Transformative Power of Containerization
  • Building and Deploying Microservices With Spring Boot and Docker
  • Auto-Scaling Kinesis Data Streams Applications on Kubernetes

Comments

Partner Resources

X

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 600 Park Offices Drive
  • Suite 300
  • Durham, NC 27709
  • support@dzone.com

Let's be friends: