Arpit Dave
Arpit Dave

Reputation: 1

Confluent 5.5.1 Cannot start Kafka Rest, Kafka Server is not running. Error: exit status 127

Installed and configured Confluent 5.5.1, but unable to >confluent local start Following are the sequence I did and error I got.

root@ubuntu-mini:~/confluent/confluent-5.5.1# confluent local start
    The local commands are intended for a single-node development environment
    only, NOT for production usage. https://docs.confluent.io/current/cli/index.html

Using CONFLUENT_CURRENT: /tmp/confluent.ys5Bp70O
zookeeper is already running. Try restarting if needed
Starting kafka
kafka is [UP]
Starting schema-registry
schema-registry is [UP]
Cannot start Kafka Rest, Kafka Server is not running. Check your deployment
Error: exit status 127
root@ubuntu-mini:~/confluent/confluent-5.5.1#

Upvotes: 0

Views: 2181

Answers (1)

OneCricketeer
OneCricketeer

Reputation: 191671

In order to run all Confluent Platform services, you must have around 6-8 GB of RAM available on your machine.

If you don't want all services, then you should start each individually. For example, if you only want Kafka, then confluent local start kafka (or kafka-server-start)

Note: Read the note, and perhaps use Docker Compose (or Helm) quickstart instructions instead, which more closely will match a production setup.

Upvotes: 1

Related Questions