在Linux上啟動Kafka有以下幾種方法:
./kafka-server-start.sh config/server.properties
其中,config/server.properties是Kafka的配置文件路徑,根據實際情況進行修改。
[Unit]
Description=Kafka
Documentation=http://docs.confluent.io/
[Service]
ExecStart=/path/to/kafka/bin/kafka-server-start.sh /path/to/kafka/config/server.properties
ExecStop=/path/to/kafka/bin/kafka-server-stop.sh
Restart=on-failure
User=kafka
Group=kafka
[Install]
WantedBy=default.target
然后,將該文件保存為/etc/systemd/system/kafka.service,執行以下命令:
systemctl enable kafka
systemctl start kafka
nohup ./kafka-server-start.sh config/server.properties &
其中,config/server.properties是Kafka的配置文件路徑,根據實際情況進行修改。
無論使用哪種方法啟動Kafka,都需要確保已經正確配置了Zookeeper的連接信息,因為Kafka依賴于Zookeeper來進行協調和管理。