Kafka啟動指令使用範例
kafka-server-start config/server.properties
config/server.properties
是Kafka伺服器的設定檔。 kafka-server-start config/server-1.properties & kafka-server-start config/server-2.properties & kafka-server-start config/server-3.properties
config/server-1.properties
, config/server-2.properties
, config/server-3.properties
是三個Kafka伺服器的設定檔。 kafka-server-start --zookeeper localhost:2181 config/server.properties
localhost:2181
是ZooKeeper的位址。 kafka-server-start --jmx-port 9999 config/server.properties
9999
是JMX的連接埠號碼。 kafka-server-start --ssl-keystore-location /path/to/keystore.jks --ssl-keystore-password secret --ssl-key-password secret config/server.properties
/path/to/keystore.jks
是SSL金鑰庫的路徑。 secret
是SSL金鑰庫的密碼。 注意事項
故障排除
如果Kafka伺服器無法啟動,可以檢查以下幾點:
其他資源
以上是Kafka啟動指令的範例和注意事項的詳細內容。更多資訊請關注PHP中文網其他相關文章!