VB_
VB_

Reputation: 45692

Hazelcast: management center not work

I'm using this example of HazelCast, where management center configured with help of

@Bean
public HazelcastInstance hazelcastInstance() {
    Config hazelcastConfig = new Config("HazelcastPresentation");
    hazelcastConfig.getManagementCenterConfig().setEnabled(true).setUrl("http://localhost:9090/mancenter");
    // ... another configs ...
    return Hazelcast.newHazelcastInstance(hazelcastConfig);
}

But when I go to http://localhost:9090/mancenter I get Failed to load resource: net::ERR_CONNECTION_REFUSED

Upvotes: 1

Views: 3495

Answers (1)

Vik Gamov
Vik Gamov

Reputation: 5456

First, you need to download Management center war from here http://hazelcast.com/products/management-center/

and start it with command java -jar mancenter-x.x.x.war 9090 mancenter

Next should be straightforward.

Cheers, Vik

Upvotes: 4

Related Questions