Accessing the Cluster
- Binary protocol (clients/producers/consumers):
pulsar://<server-ip>:6650
- HTTP REST API / Pulsar Manager:
http://<server-ip>:8080
Managing the Service
# View status
systemctl status pulsar
# Start Pulsar
sudo systemctl start pulsar
# Stop Pulsar
sudo systemctl stop pulsar
# Restart Pulsar
sudo systemctl restart pulsar
# View logs
docker compose -f /root/pulsar/compose.yml logs -f
Data Storage
- Zookeeper data →
/root/pulsar/data/zookeeper
- Bookkeeper data →
/root/pulsar/data/bookkeeper
Notes & Limitations
- This environment is not highly available. It runs a single Zookeeper, Bookie, and Broker.
- Use only for local development, testing, or demos.