일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- licence delete curl
- zip 암호화
- API
- zip 파일 암호화
- ELASTIC
- Mac
- high level client
- springboot
- docker
- 900gle
- plugin
- Elasticsearch
- token filter test
- MySQL
- aggs
- sort
- Kafka
- License
- flask
- 차트
- Python
- license delete
- Test
- analyzer test
- aggregation
- matplotlib
- Java
- TensorFlow
- 파이썬
- query
- Today
- Total
목록Kafka (10)
개발잡부
kafka 를 3.5로 올려보잣 https://ldh-6019.tistory.com/228 [kafka] MacOs Kafka install / test kafka를 설치 해보자 https://www.apache.org/dyn/closer.cgi?path=/kafka/2.8.0/kafka_2.13-2.8.0.tgz Apache Download Mirrors Copyright © 2020 The Apache Software Foundation, Licensed under the Apache License, Version 2.0. Apache and the Apache feather l ldh-6019.tistory.com kafka를 설치 해보자 https://downloads.apache.org/kafk..
version 확인 (base) ➜ kafka docker compose version Docker Compose version v2.2.3 version: '3.6' services: zookeeper1: container_name: zookeeper1 image: wurstmeister/zookeeper:3.4.6 volumes: - "./zookeeper/data:/data" - "./zookeeper/logs:/datalog" ports: - "12181:2181" zookeeper2: container_name: zookeeper2 image: wurstmeister/zookeeper:3.4.6 volumes: - "./zookeeper/data:/data" - "./zookeeper/logs:..
설치되어 있는 카프카의 버전을 확인해보자 카프카에 보안 이슈가 있다고 한다. 사용중인 카프카에 버전을 확인해보자 #kafka home /kafka/bin 으로 이동 $ ./kafka-topics.sh --version 2.6.0 (Commit:62abe01bee039651) 2.6.0을 사용하고 있었군... https://www.krcert.or.kr/data/secNoticeView.do?bulletin_writing_sequence=66930 KISA 인터넷 보호나라&KrCERT KISA 인터넷 보호나라&KrCERT www.boho.or.kr
(base) ➜ kafka docker compose -f kafka-full.yml up -d --build http://localhost:8080 https://github.com/900gle/docker-compose-kafka GitHub - 900gle/docker-compose-kafka Contribute to 900gle/docker-compose-kafka development by creating an account on GitHub. github.com
Error response from daemon: Container 2c8318196be216b730907022eccaffc314fdd7e5d8e0286ea3f6b1d219acd5c0 is restarting, wait until the container is running docker logs kafka1 ERROR: Missing environment variable KAFKA_LISTENERS. Must be specified when using KAFKA_ADVERTISED_LISTENERS 아래 2값을 유니크 하게 만들어 준다 KAFKA_ADVERTISED_HOST_NAME: ${EXPOSED_HOSTNAME}1 KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://${EXPO..
이거 버려.. cd /Users/doo/docker/kafka (base) ➜ kafka docker compose -f docker-compose.yml up -d --build docker-compose exec kafka1 kafka-topics --create --topic 900gle --bootstrap-server kafka1:9092 --replication-factor 3 --partitions 2 Error response from daemon: Container 2c8318196be216b730907022eccaffc314fdd7e5d8e0286ea3f6b1d219acd5c0 is restarting, wait until the container is running version: '..
kafka 실행 $ docker compose -f docker-compose.yml up -d --build 토픽생성 $ docker-compose exec kafka-1 kafka-topics --create --topic 900gle --bootstrap-server kafka-1:9092 --replication-factor 3 --partitions 2 컨슈머 생성 docker-compose exec kafka-1 bash [appuser@c6204ce58d07 ~]$ kafka-console-consumer --topic 900gle --bootstrap-server kafka-1:9092 프로듀서 생성 docker-compose exec kafka-1 bash [appuser@c6204ce5..
cd ~/docker/kafka docker compose up -d --build kafka 설치하고 kafka manager 설치 접속 : localhost:9000 Configuring the Kafka Manager To setup Kafka Manager, navigate to http://localhost:9000 and complete the following steps: Select Cluster and Add Cluster Enter a cluster name e.g. 900gle Enter a cluster ZooKeeper Host e.g. zookeeper:2181 Select a Kafka version matching the kafka image e.g. 0.10.1 or the..
https://github.com/yahoo/CMAK/releases Releases · yahoo/CMAK CMAK is a tool for managing Apache Kafka clusters. Contribute to yahoo/CMAK development by creating an account on GitHub. github.com 2. 다운로드 후 압축 해제 $ tar -xzvf CMAK-3.0.0.5.tar.gz 3. sbt 실행 sbt : Simple Build Tool, 스칼라를 위한 빌드 툴 압축해제된 폴더에서 sbt 실행 $ cd CMAK-3.0.0.5/ $ ./sbt clean dist 4. kafka-manager-3.0.0.5.zip 파일 압축 해제 sbt 실행 후 만들어진 ..
kafka를 설치 해보자 https://www.apache.org/dyn/closer.cgi?path=/kafka/2.8.0/kafka_2.13-2.8.0.tgz Apache Download Mirrors Copyright © 2020 The Apache Software Foundation, Licensed under the Apache License, Version 2.0. Apache and the Apache feather logo are trademarks of The Apache Software Foundation. www.apache.org #다운로드 wget https://archive.apache.org/dist/kafka/2.8.0/kafka_2.13-2.8.0.tgz #압축해제 tar ..