Real-Time Data in the form of events from sources such as Databases, sensors, mobile devices, cloud services, and software applications is crucial for business growth. A Community Distributed Message Streaming Platform like Apache Kafka helps ensure a continuous flow of data so that businesses can take strategic decisions in Real-Time. Kafka is one such unified solution that offers services to read, write, store & process thousands of messages per second.

You can Install Kafka on Mac, Windows, Linux Operating Systems as well as deploy it in the cloud. Apache Kafka provides several software versions on its website to Install Kafka on Mac. You can either Manually download the Kafka package and Install Kafka on Mac or use the single-line Homebrew commands on Mac.

In this article, you will learn how to effectively Install Kafka on Mac Manually as well as via Homebrew commands.   

How to Install Kafka on Mac?

To install Kafka on Mac, you can follow the easy steps given below:

Simplify Data Integration with Hevo’s no code Data Pipeline

If you are using Apache Kafka & Kafka Confluent Cloud as your Message Streaming Platform and searching for a Stress-Free Alternative to Manual Data Integration, then Hevo can effortlessly automate this for you. Hevo, with its strong integration with 150+ sources & BI tools(Including 40+ Free Sources), allows you to not only export & load data but also transform & enrich your data & make it analysis-ready in a jiffy.

Start for free now!

Get Started with Hevo for Free

Step 1: Install Java on Mac Manually or via HomeBrew

Before you begin to Install Kafka on Mac you should ensure that Java version 8+ is installed on your system. You can check that by running the java -version command on the terminal. If it is installed, you will get the following output:

Install Kafka on Mac - java version output
Image Source

If you have not installed Java yet, then follow the steps given below to install Java on Mac:

  • Step 1:  Visit the Official Java Downloads Page and click on the download link for the .dmg file.
  • Step 2: Double click the downloaded file and follow the installation instructions to install Java on Mac. After successful installation, you may delete the .dmg file for the setup.

If you have Homebrew installed on Mac, you install Java on Mac via these 2 simple commands:

$ brew tap caskroom/cask
$ brew cask install java

Step 2: Download & Install Kafka on Mac Manually or via HomeBrew

To Install Kafka on Mac Manually, follow these steps:

  • Step 1: Visit the Official Apache Kafka Downloads page and click on the version you want to download under the Binary Downloads section.
  • Step 2: After you click on the version link, Apache will provide a mirror link for downloading Kafka. Save the file to your desired location.
  • Step 3: Open up the terminal and navigate to the folder where the downloaded Kafka file is present. You can now extract the contents of the file from the downloaded ‘tar’ File by the following commands:
$ tar -xzf kafka_2.13-3.0.0.tgz 
$ cd kafka_2.13-3.0.0  

Following these instructions completes the manual approach to Manually Download & Install Kafka on Mac. If you have Homebrew installed on your Mac, you can Install Kafka on Mac in a single step by running the following command:

$ brew install kafka

Step 3: Run ZooKeeper & Kafka

Currently, it is necessary to Run ZooKeeper alongside Kafka as it is responsible for Kafka’s Cluster Management. You don’t need to install ZooKeeper separately as it comes with the Apache Kafka Installation package. Though, as reported by Apache, Zookeeper will not be required by Kafka in the future versions.

  • Step 1: From the root folder of Apache Kafka, you can run ZooKeeper by executing the following command:
$ bin/zookeeper-server-start.sh config/zookeeper.properties

On successful execution of this command, you will see an output as follows:

Install Kafka on Mac - ZooKeeper Starting Output
Image Source
  • Step 2: Now, open a new terminal window & run the following command from the root of Apache Kafka to start the Kafka environment:
$ bin/kafka-server-start.sh config/server.properties

After this, you will see the output below confirming the successful run of the Kafka broker.

Install Kafka on Mac - Kafka Starting Output
Image Source

Similarly, on the Zookeeper terminal, a message for a new session will be displayed. This completes the process to Install Kafka on Mac.

Install Kafka on Mac - ZooKeeper New Session Output
Image Source 

Step 4: Setup the PATH Environment Variable

You can easily access the Kafka binaries by editing your PATH environment variable. To do this, run the following command on your system (for example, ~/ .zshrc if you use zshrc):

PATH="$PATH:/Users/stephanemaarek/kafka_2.13-3.0.0/bin"

Once you have done this, you can run kafka commands without needing to prefix them.

After reloading your terminal, you can run the following command from any directory.

Kafka-topics.sh

Step 5 (optional): Changing the Zookeeper and Kafka Storage Directory

It is recommended to change the storage directory for Zookeeper and Kafka to avoid server connection issues.

For Zookeeper:

  • Change the zookeeper.properties file at ~/kafka_2.13-3.0.0/config/zookeeper.properties to another directory per your requirement.
  • Launch Zookeeper with the updated zookeeper.properties file.
  • Alternatively, you can create a copy of the zookeeper.properties file on your device, edit that file, and reference it on the Zookeeper start command.

For Kafka:

  • Change the server.properties file at ~/kafka_2.13-3.0.0/config/server.properties to your required directory.
  • Launch Zookeeper using the updated server.properties file.
  • Alternatively, you can create a copy of the server.properties file on your device, edit that file, and reference it on the Zookeeper start command.

Creating a Kafka Topic

A topic is a feed name or category that you can use to publish records. Kafka topics are always multi-subscriber; a topic may have zero, one, or several subscribers to the data published to it.

You can use the following example to create a sample topic called “my-topic.” This example uses a single partition and a replication factor of 1.

./bin/kafka-topics.sh --create \

 --bootstrap-server localhost:9092 \

 --replication-factor 1 \

 --partitions 1 \

 --topic my-topic

To publish a new message on the topic, run the following command and type your message on the console that appears.

./bin/kafka-console-producer.sh \

 --broker-list localhost:9092  \

 --topic my-topic

Similarly, you can use the following command to consume a message.

./bin/kafka-console-consumer.sh \

 --bootstrap-server localhost:9092 \

 --topic my-topic \

 --from-beginning

Conclusion

In this article, you have learned how to effectively Install Kafka on Mac both Manually and via Homebrew. To Install Kafka on Mac and successfully run it, you need to ensure that the Java 8+ version is installed beforehand. Kafka provides an Open-Source environment for collecting, processing, storing, and analyzing data at scale in Real-Time. Due to its Flexibility, Reliability & Best-in-Class Performance, Kafka has several use cases in organizations globally such as Building Data Pipelines, Leveraging Real-Time Data Streams, enabling Operational Metrics, and Data Integration across countless sources.

Learn how to install Kafka on other systems with these essential reads:

For a more In-depth and Holitisic Analysis of Business Performance and Financial Health, it is essential to consolidate data from Apache Kafka and all the other applications used across your business. However, to extract this complex data with everchanging Data Connectors, you would require to invest a section of your Engineering Bandwidth to Integrate, Clean, Transform & Load data to your Data Warehouse or a destination of your choice. On the other hand, a more Effortless & Economical choice is exploring a Cloud-Based ETL Tool like Hevo Data.

Visit our Website to Explore Hevo

Want to take Hevo for a ride? Sign Up for a 14-day free trial and simplify your Data Integration process. Do check out the pricing details to understand which plan fulfills all your business needs.

Tell us about your experience of completing the process to Install Kafka on Mac! Share your thoughts with us in the comments section below.

Sanchit Agarwal
Former Research Analyst, Hevo Data

Sanchit Agarwal is a data analyst at heart with a passion for data, software architecture, and writing technical content. He has experience writing more than 200 articles on data integration and infrastructure. He finds joy in breaking down complex concepts in simple and easy language, especially related to data base migration techniques and challenges in data replication.

No-code Data Pipeline for Apache Kafka

Get Started with Hevo