Skip to content

Latest commit

 

History

History
22 lines (21 loc) · 952 Bytes

File metadata and controls

22 lines (21 loc) · 952 Bytes

Command Memo

  • ZooKeeper
    • Path: /Users/wuyichen/zookeeper-3.4.14/bin
    • Commands
      • Start: sh zkServer.sh start
      • Stop: sh zkServer.sh stop
    • Port: 2181
  • Kafka
    • Path: /Users/wuyichen/kafka_2.11-2.2.0/bin
    • Commands
      • Start: sh kafka-server-start.sh ../config/server.properties
      • Stop: Press Crtl+C
      • List all topics: bash kafka-topics.sh --list --zookeeper localhost:2181
      • Product a message to a topic: bash kafka-console-producer.sh --broker-list localhost:9092 --topic <topic_name>
      • Comsume a message from a topic: bash kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic <topic_name> --from-beginning
    • Port: 9092
  • Eventuate CDC Service
    • Path: ./eventuate-cdc-service
    • Commands
      • Start: java -jar eventuate-tram-cdc-mysql-service-0.21.3.RELEASE.jar --spring.config.location=application.properties
      • Stop: Press Crtl+C