Hazelcast Mancenter: Manage Your Cache

Dheeraj Gupta
2 min readFeb 22, 2021

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 map structure.
  • To update map configurations.

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.

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

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.

Originally published at https://dzone.com.

--

--

Dheeraj Gupta

Senior Software Developer. Develops in Java, Spring Boot. Query in MySql. Deploys on AWS Cloud. Learns Hadoop. Coder @ https://github.com/dheerajgupta217