본문 바로가기
Dev/Kafka

Kafka 외부 접속 허용하기

by 돈코츠라멘 2019. 10. 7.
$ vi conf/server.properties

conf/server.properties가 Kafka의 설정을 담당하는 파일이다.

# Hostname and port the broker will advertise to producers and consumers. If not set,
# it uses the value for "listeners" if configured.  Otherwise, it will use the value
# returned from java.net.InetAddress.getCanonicalHostName().
#advertised.listeners=PLAINTEXT://your.host.name:9092

여기에서 마지막 줄의 주석을 풀고 advertised.listeners 옵션 값을 Kafka가 실행 중인 서버의 ip 주소로 수정한다.

# Hostname and port the broker will advertise to producers and consumers. If not set,
# it uses the value for "listeners" if configured.  Otherwise, it will use the value
# returned from java.net.InetAddress.getCanonicalHostName().
advertised.listeners=PLAINTEXT://192.168.0.1:9092

 

댓글