windows下zookeeper,kafka和solr啟動
阿新 • • 發佈:2019-01-30
進到kafka的Home目錄
啟動zookeeper:.\bin\windows\zookeeper-server-start.bat config\zookeeper.properties
停止zookeeper:
.\bin\windows\zookeeper-server-stop.bat
啟動kafka:
.\bin\windows\kafka-server-start.bat config\server.properties
停止kafka:
.\bin\windows\kafka-server-stop.bat
建立topic:
.\bin\windows\kafka-topics.bat --zookeeper localhost:2181/carpo/kafka --create --topic wf.dataflow.req --partitions 1 --replication-factor 1
.\bin\windows\kafka-topics.bat --zookeeper localhost:2181/carpo/kafka --create --topic wf.shell.req --partitions 1 --replication-factor 1
測試:
.\bin\windows\kafka-topics.bat --zookeeper localhost:2181/carpo/kafka --create --topic test --partitions 1 --replication-factor 1
.\bin\windows\kafka-console-consumer.bat --zookeeper localhost:2181/carpo/kafka --topic test
.\bin\windows\kafka-console-producer.bat --broker-list localhost:9092 --topic test
bin/kafka-topics.sh --create --zookeeper 192.168.162.129:2181/carpo/kafka --replication-factor 1 --partitions 1 --topic test
bin/kafka-topics.sh -list --zookeeper 192.168.162.129:2181/carpo/kafka
bin/kafka-console-producer.sh --broker-list 192.168.162.129:9092 --topic test
進到Solr的Home目錄下:
.\bin\solr start -p 8984 -a "-Dsolr.data.dir=E:\workdir\solr-5.3.2\datasets"
停止solr:
.\bin\solr stop -p 8984 -a "-Dsolr.data.dir=E:\workdir\solr-5.3.2\datasets"