🚀 RobustMQ v0.2.4
Welcome to RobustMQ v0.2.4 release!
📦 Assets
This release includes pre-built binaries for multiple platforms:
- Linux AMD64 (
robustmq-v0.2.4-linux-amd64.tar.gz) - Linux ARM64 (
robustmq-v0.2.4-linux-arm64.tar.gz) - macOS AMD64 (
robustmq-v0.2.4-darwin-amd64.tar.gz) - macOS ARM64 (
robustmq-v0.2.4-darwin-arm64.tar.gz)
Note: Platform-specific packages are uploaded incrementally. If your platform is not yet available, please check back shortly.
📥 Installation
-
Download the package for your platform from the assets below
-
Extract the archive:
tar -xzf robustmq-v0.2.4-<platform>.tar.gz cd robustmq-v0.2.4-<platform>
-
Review the directory structure:
bin/- Management scripts (robust-server, robust-ctl, robust-bench)libs/- Compiled binaries (broker-server, cli-command, cli-bench)config/- Configuration filesdist/- Web UI (if included)LICENSE- License filepackage-info.txt- Package information
⚙️ Configuration
- Edit configuration files in the
config/directory according to your needs - Main configuration file:
config/server.toml- Server configuration (supports multiple roles: meta, broker, journal)config/server-tracing.toml- Logging and tracing configuration
🎯 Quick Start
Start RobustMQ Server (all-in-one mode):
./bin/robust-server startStart with custom configuration:
./bin/robust-server start config/server.tomlStop the server:
./bin/robust-server stopAccess Web UI (if frontend is included):
http://localhost:8080
Management Tools:
# View cluster information
./bin/robust-ctl cluster info
# Run benchmarks
./bin/robust-bench --helpTest MQTT Connection:
# Install mqttx client (if not already installed)
npm install -g mqttx-cli
# Publish message
mqttx pub -h 127.0.0.1 -p 1883 -t "test/topic" -m "Hello RobustMQ!"
# Subscribe to messages
mqttx sub -h 127.0.0.1 -p 1883 -t "test/topic"📚 Documentation
- Documentation: https://www.robustmq.com
- GitHub Repository: https://github.com/robustmq/robustmq
- Issues: https://github.com/robustmq/robustmq/issues
- Discussions: https://github.com/robustmq/robustmq/discussions
🛠️ Build Information
- Release Version: v0.2.4
- Build Date: 2025-10-29 15:26:56 CST
- Frontend Web UI: Included (in packages with
dist/directory)
📝 Notes
- For production deployments, please review and adjust the configuration files
- Make sure required ports are available and not blocked by firewall
- Check system requirements and dependencies before deployment
- For upgrade instructions, please refer to the documentation
💬 Community
Join our community to get help, share ideas, and contribute:
- GitHub Discussions: Ask questions and share knowledge
- GitHub Issues: Report bugs and request features
- Contributing: We welcome contributions! See CONTRIBUTING.md
What's Changed
- refactor: Fix the issue causing the inheritance test to fail. by @socutes in #1521
- test: add test case for connect pacekt by @PorterZhang2021 in #1513
- refactor: Optimize the implementation of metadata cache by @socutes in #1536
- fix: wrong duplicate clone by @get-jiang in #1539
- refactor: Fix the connector bug and enhance the core capabilities of the connector. by @socutes in #1538
New Contributors
- @get-jiang made their first contribution in #1539
Full Changelog: v0.2.3...v0.2.4