전체 글

전체 글

    [KAFKA] 콘솔 명령어 모음

    로컬에서 카프카 사용시 자주 쓰는 콘솔 명령어 모음 서버 시작./bin/zookeeper-server-start.sh -daemon config/zookeeper.properties ./bin/kafka-server-start.sh -daemon config/server.properties 토픽 조회./bin/kafka-topics.sh --list --zookeeper localhost:2181 Producer./bin/kafka-console-producer.sh --broker-list localhost:9092 --topic topicname Consumer./bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic topic..