목록Data (9)
Study Memory Work

- Kafka 구성도 - kafka : 분산 메시지 스트리밍 플랫폼 - 서버(=node,broker)를 여러대 둘 수 있고, 주키퍼 클러스터에 의해 관리됨. - topic이라는 개념이 있어, 카프카에 메세지를 전달하거나 카프카의 메세지를 읽는 주체들은 이 topic을 key로써 카프카에 원하는 메세지를 구독할 수 있다. - 카프카는 여러 토픽을 생성하여 토픽 내에 여러 메세지를 큐(Queue) 형태로 쌓을 수 있다. - Kafka 설치 1. Open JDK 설치 sudo apt install openjdk-8-jdk 2. Kafka 설치 wget https://archive.apache.org/dist/kafka/3.2.3/kafka_2.13-3.2.3.tgz tar -xzf kafka_2.13-3.2...

1. Ubuntu 이미지 다운로드 Ubuntu 20.04.5 Desktop (64-bit) 로 다운로드. https://releases.ubuntu.com/focal/ Ubuntu 20.04.5 LTS (Focal Fossa) Select an image Ubuntu is distributed on three types of images described below. Desktop image The desktop image allows you to try Ubuntu without changing your computer at all, and at your option to install it permanently later. This type of image is what m releases.ubunt..

Logstash 설치 / 실행 Metricbeat 설치 / 실행 - Logstash 설치 / 실행 1. JAVA 설치 $ sudo apt update $ sudo apt upgrade $ sudo apt-get install openjdk-8-jdk $ java -version 2. JAVA_HOME 환경설정 하기 $ sudo vim ~/.bashrc // 파일에 아래 내용 추가 export JAVA_HOME=$(dirname $(dirname $(readlink -f $(which java)))) export PATH=$PATH:$JAVA_HOME/bin // esc + :wq 파일 저장 및 닫기 3. Logstash Download / 압축 풀기 방법1. https://www.elastic.co/kr..