Bootstrap FreeKB - Kafka - Install Kafka
Kafka - Install Kafka

Updated:   |  Kafka articles

First you will need to download the Kafka installation files from https://www.apache.org/dyn/closer.cgi?path=/kafka. On a Linux system, this could be done using the curl command. In this example, version 2.6.0 Kafka tarball will be downloaded to /tmp/kafka.tgz.

curl -o "/tmp/kafka.tgz" "https://apache.claz.org/kafka/2.6.0/kafka_2.13-2.6.0.tgz"

 

Use the tar command to extract the tarball. In this example, the Kafka binaries will be located at /opt directory.

tar -zxf /tmp/kafka.tgz -C /opt
rm /tmp/kafka.tgz

 

That's it. Simple! You can now start Kafka.




Did you find this article helpful?

If so, consider buying me a coffee over at Buy Me A Coffee



Comments


Add a Comment


Please enter d9ffa1 in the box below so that we can be sure you are a human.