mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-16 11:23:11 -06:00
add macos kafka setup instructions
This commit is contained in:
parent
08274bab5a
commit
f8ee3124f1
15
INSTALL.md
15
INSTALL.md
|
|
@ -52,6 +52,21 @@ kafka/bin/zookeeper-server-start.sh -daemon kafka/config/zookeeper.properties
|
||||||
kafka/bin/kafka-server-start.sh -daemon kafka/config/server.properties
|
kafka/bin/kafka-server-start.sh -daemon kafka/config/server.properties
|
||||||
```
|
```
|
||||||
|
|
||||||
|
On MacOS, you can use [homebrew](https://brew.sh/) for easier setup of kafka
|
||||||
|
|
||||||
|
```bash
|
||||||
|
brew install kafka
|
||||||
|
brew services start zookeeper
|
||||||
|
brew services start kafka
|
||||||
|
```
|
||||||
|
|
||||||
|
You can stop Kafka service by running
|
||||||
|
|
||||||
|
```bash
|
||||||
|
brew services stop zookeeper
|
||||||
|
brew services stop kafka
|
||||||
|
```
|
||||||
|
|
||||||
## Configuration
|
## Configuration
|
||||||
|
|
||||||
### Postgres database setup
|
### Postgres database setup
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue