본문 바로가기

728x90

전체 글

[draft] Kafka(Zookeeper)를 systemd를 사용하여 시작, 중지 및 관리하는 방법 Kafka(Zookeeper)를 systemd를 사용하여 시작, 중지 및 관리하는 방법Kafka(Zookeeper)를 Systemd로 관리하기 위해 새로운 Systemd Unit 파일을 생성합니다.systemd 유닛 파일 생성zookeepervim /etc/systemd/system/zookeeper.service[Unit]Requires=network.target remote-fs.targetAfter=network.target remote-fs.target[Service]Type=simpleUser=rootGroup=rootExecStart=/usr/local/kafka/bin/zookeeper-server-start.sh /usr/local/kafka/config/zookeeper.propertie.. 더보기
[draft] kcat(kafkacat) 명령어 kcat(kafkacat) 명령어kcat - Apache Kafka 생산자(producer) 및 소비자(consumer) 도구테스트 환경$ cat /etc/redhat-releaseCentOS Linux release 7.9.2009 (Core)$ getconf LONG_BIT64kafkacat 설치gcc-c++, git, librdkafka-devel 설치yum install -y gcc-c++ git librdkafka-develkafkacat 다운로드(git clone), 컴파일 및 설치git clone https://github.com/edenhill/kafkacatcd kafkacat./configuremakemake installkcat 버전 정보 확인$ kcat -Vkcat - Apache .. 더보기
[draft] 카프카 producer와 consumer 테스트 카프카 producer와 consumer 테스트 카프카 토픽 생성topic listkafka-topics.sh --list --bootstrap-server localhost:9092topic createreplication-factor : 복제본 개수(2)partitions : 파티션 개수(3)kafka-topics.sh --create --bootstrap-server localhost:9092 --replication-factor 2 --partitions 3 --topic helloworld$ kafka-topics.sh --create --bootstrap-server localhost:9092 --replication-factor 2 --partitions 3 --topic helloworl.. 더보기
[draft] Apache Kafka(Zookeeper)를 클러스터 구성하는 방법 Apache Kafka(Zookeeper)를 클러스터 구성하는 방법구성 환경$ cat /etc/redhat-releaseCentOS Linux release 7.9.2009 (Core)$ getconf LONG_BIT64카프카 클러스터 다이어그램Apache Kafka(Zookeeper)를 클러스터 구성하는 방법java 설치$ yum install -y java-11-openjdk.x86_64$ java --versionopenjdk 11.0.13 2021-10-19 LTSOpenJDK Runtime Environment 18.9 (build 11.0.13+8-LTS)OpenJDK 64-Bit Server VM 18.9 (build 11.0.13+8-LTS, mixed mode, sharing)주키퍼 클러.. 더보기
[draft] docker-compose를 사용하여 ngrinder 컨트롤러 및 에이전트를 설정하는 방법 docker-compose를 사용하여 ngrinder 컨트롤러 및 에이전트를 설정하는 방법1. Docker 및 Docker Compose 설치2. Docker Compose 파일 생성vim docker-compose.ymlversion: '3.8'services: controller: image: ngrinder/controller:latest restart: always container_name: controller hostname: controller sysctls: - net.core.somaxconn=65000 ports: - 8888:80 - 16001:16001 - 12000-12009:12000-12009 volum.. 더보기
[draft] AWS CLI를 사용하여 AWS EC2 인스턴스 정보를 조회하는 방법 AWS CLI를 사용하여 AWS EC2 인스턴스 정보를 조회하는 방법AWS CLI를 사용하여 AWS EC2 인스턴스 정보를 조회하려면 describe-instances 명령어를 사용합니다.1. AWS CLI 설치AWS CLI가 설치되어 있지 않은 경우 먼저 설치해야 합니다.2. AWS CLI 구성AWS CLI를 사용하기 위해 AWS 계정과 연결되는 설정을 해야 합니다.터미널에서 다음 명령어를 실행하고 AWS 계정의 Access Key ID와 Secret Access Key 그리고 기본 리전을 설정합니다.aws configure3. EC2 인스턴스 정보 조회EC2 인스턴스 정보를 조회하는 명령어입니다.aws ec2 describe-instances이 명령어는 현재 AWS 계정에 있는 모든 EC2 인스턴스에.. 더보기
[draft] Let's Encrypt(certbot)에서 SSL 인증서를 발급받는 방법 Let's Encrypt(certbot)에서 SSL 인증서를 발급받는 방법1. Standalone 모드로 인증서 발급하기이 방법은 웹 서버가 없는 경우에 사용됩니다. Certbot은 자체적으로 웹 서버를 실행하고 ACME 도메인 검증을 처리합니다."독립 실행형" 웹 서버를 사용하여 인증서를 가져옵니다.포트 80을 사용할 수 있어야 합니다. 이 기능은 웹 서버가 없거나 로컬 웹 서버와의 직접 통합이 지원되지 않거나 원하지 않을 때 유용합니다.80(HTTP) 또는 443(HTTPS) 포트 오픈되어 있어야함(방화벽 정책 오픈)80(HTTP) 또는 443(HTTPS)을 사용(기존 웹 서버 중단)도메인이 자신의 서버에 연결되어 있어야함(A 레코드 설정)certbot certonly --standalone -d [.. 더보기
[draft] AWS EC2 Instance Connect를 설정하는 방법 AWS EC2 Instance Connect를 설정하는 방법Amazon Linux 2에 EC2 Instance Connect(ec2-instance-connect) 설치yum install ec2-instance-connect인터스턴 생성 시 ec2-instance-connect 패키지기 포함되어 있나 봐요(설치되어 있네요 ㅠㅠ)$ sudo yum install -y ec2-instance-connectLoaded plugins: extras_suggestions, langpacks, priorities, update-motdPackage ec2-instance-connect-1.1-14.amzn2.noarch already installed and latest versionNothing to do/op.. 더보기

728x90