Zookeeper на Windows

1

У меня возникают проблемы с запуском zookeeper в среде Windows.

Я загрузил zookeeper 3.4.6. Вытащил его. Создал zoo.cfg в папке conf с информацией, как показано ниже:

# The number of milliseconds of each tick
tickTime=2000
# The number of ticks that the initial 
# synchronization phase can take
initLimit=10
# The number of ticks that can pass between 
# sending a request and getting an acknowledgement
syncLimit=5
# the directory where the snapshot is stored.
# do not use /tmp for storage, /tmp here is just 
# example sakes.
dataDir=/tmp/zookeeper
# the port at which the clients will connect
clientPort=2181
# the maximum number of client connections.
# increase this if you need to handle more clients
#maxClientCnxns=60
#
# Be sure to read the maintenance section of the 
# administrator guide before turning on autopurge.
#
# http://zookeeper.apache.org/doc/current/zookeeperAdmin.html#sc_maintenance
#
# The number of snapshots to retain in dataDir
#autopurge.snapRetainCount=3
# Purge task interval in hours
# Set to "0" to disable auto purge feature
#autopurge.purgeInterval=1

Затем я попытался запустить zkServer.cmd из папки bin. Но я не уверен, что это бежит.

Как проверить, работает ли Zookeeper Server в Windows?

Теги:
apache-zookeeper

1 ответ

2

Запустите zkServer.cmd из инструмента командной строки Windows в качестве администратора, если вы хотите увидеть результат, а не кликающий на нем, закроется в конце, и вы не сможете увидеть результат.

Кроме того, вы должны обновить dataDir до допустимого каталога Windows в форме C: /tmp/....

В командной строке после вызова zkServer.cmd вы должны увидеть разные сообщения [INFO] в своей командной строке, последний из которых привязан к порту 0.0.0.0/0.0.0.0:2181.

  • 0
    Спасибо!! Я изменил dataDir на C: / tmp /, а также исправил проблему с моим домашним путем java. Это работало отлично!

Ещё вопросы

Сообщество Overcoder
Наверх
Меню