-
-
Save bijeshp/669e9b79ab70174b308a65a7ad5f5d66 to your computer and use it in GitHub Desktop.
Revisions
-
mayankcpdixit revised this gist
Dec 10, 2018 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -11,7 +11,7 @@ mkdir -p /usr/local/var/lib/kafka-logs sudo chmod 777 /usr/local/var/lib/kafka-logs /usr/local/Cellar/kafka/2.1.0/libexec/bin/kafka-server-start.sh /usr/local/etc/kafka/server.properties ``` Uncomment: ``` listeners=PLAINTEXT://localhost:9092 advertised.listeners=PLAINTEXT://localhost:9092 -
mayankcpdixit revised this gist
Dec 10, 2018 . 1 changed file with 7 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -11,5 +11,12 @@ mkdir -p /usr/local/var/lib/kafka-logs sudo chmod 777 /usr/local/var/lib/kafka-logs /usr/local/Cellar/kafka/2.1.0/libexec/bin/kafka-server-start.sh /usr/local/etc/kafka/server.properties ``` Update: ``` listeners=PLAINTEXT://localhost:9092 advertised.listeners=PLAINTEXT://localhost:9092 ``` in your `/usr/local/etc/kafka/server.properties`. PS: if it's not present in `/usr/local/Cellar/kafka/2.1.0/libexec/bin/kafka-server-start.sh` then try running `/usr/local/bin/kafka-server-start` it'll give the path. keywords: Install Kafka on OSX via Homebrew, -
mayankcpdixit revised this gist
Dec 10, 2018 . 1 changed file with 7 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -3,9 +3,13 @@ run following commands: ``` brew install kafka sudo mkdir -p /usr/local/var/run/zookeeper/data sudo chmod 777 /usr/local/var/run/zookeeper/data zkServer start mkdir -p /usr/local/var/lib/kafka-logs sudo chmod 777 /usr/local/var/lib/kafka-logs /usr/local/Cellar/kafka/2.1.0/libexec/bin/kafka-server-start.sh /usr/local/etc/kafka/server.properties ``` PS: if it's not present in `/usr/local/Cellar/kafka/2.1.0/libexec/bin/kafka-server-start.sh` then try running `/usr/local/bin/kafka-server-start` it'll give the path. keywords: Install Kafka on OSX via Homebrew, -
mayankcpdixit revised this gist
Dec 10, 2018 . 1 changed file with 5 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -4,6 +4,8 @@ run following commands: ``` brew install kafka sudo chmod 777 /usr/local/var/run/zookeeper/data brew service start kafka brew service start zookeeper ``` keywords: Install Kafka on OSX via Homebrew, -
mayankcpdixit revised this gist
Dec 10, 2018 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,6 @@ # Install kafka in your local mac machine run following commands: ``` brew install kafka sudo chmod 777 /usr/local/var/run/zookeeper/data -
mayankcpdixit revised this gist
Dec 10, 2018 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ # To install kafka in your local mac machine run following commands: ``` brew install kafka -
mayankcpdixit revised this gist
Dec 10, 2018 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,5 @@ To install kafka in your local mac machine run following commands: ``` brew install kafka sudo chmod 777 /usr/local/var/run/zookeeper/data -
mayankcpdixit created this gist
Dec 10, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ ``` brew install kafka sudo chmod 777 /usr/local/var/run/zookeeper/data brew start kafka brew start zookeeper ```