Hazelcast access using CLI

后端 未结 3 2115
我在风中等你
我在风中等你 2021-02-15 17:39

Suppose I have instance of Hazelcast running somewhere on remote machine and it executed in official Docker image. So I wolud like to see some data that Hazelcast stores just li

3条回答
  •  没有蜡笔的小新
    2021-02-15 18:15

    Andrii,

    You can take advantage of Hazelcast demo application. You can find here:

    • com.hazelcast.console.ConsoleApp member console, part of hazelcast*.jar. See GH
    • com.hazelcast.client.console.ClientConsoleApp client console, part of hazelcast-client*.jar. See GH

    You can modify server.sh to run member / client in CLI mode

    java -server $JAVA_OPTS com.hazelcast.console.ConsoleApp

    or

    java -server $JAVA_OPTS com.hazelcast.client.console.ClientConsoleApp

    Let me know if you have any questions. Thank you

提交回复
热议问题