Download Apache BifroMQ (Incubating)
The latest Release
Current release: 4.0.0-incubating(Release Note)
| Artifact | Signature | SHA512 |
|---|---|---|
| Source Bundle | .asc | .sha512 |
| Linux Binary | .asc | .sha512 |
| Windows Binary | .asc | .sha512 |
- Use the release archive if needed.
- Import the KEYS file before verification
Verify your download
- Import keys
curl -O https://downloads.apache.org/incubator/bifromq/KEYS
gpg --import KEYS
- Download and verify PGP signature (source)
curl -L -O https://www.apache.org/dyn/closer.lua/incubator/bifromq/4.0.0-incubating/apache-bifromq-4.0.0-incubating-src.tar.gz?action=download
curl -O https://downloads.apache.org/incubator/bifromq/4.0.0-incubating/apache-bifromq-4.0.0-incubating-src.tar.gz.asc
gpg --verify apache-bifromq-4.0.0-incubating-src.tar.gz.asc apache-bifromq-4.0.0-incubating-src.tar.gz
- Check SHA512
curl -O https://downloads.apache.org/incubator/bifromq/4.0.0-incubating/apache-bifromq-4.0.0-incubating-src.tar.gz.sha512
sha512sum -c apache-bifromq-4.0.0-incubating-src.tar.gz.sha512
If verification fails, discard the artifact and contact dev@bifromq.apache.org.
Docker image
Run quickly with the published image (source release remains authoritative):
docker run -d --name bifromq -p 1883:1883 apache/bifromq:4.0.0-incubating
Set memory limits:
docker run -d -m 2G -e MEM_LIMIT='2147483648' --name bifromq -p 1883:1883 apache/bifromq:4.0.0-incubating
Pass custom JVM options with JVM_HEAP_OPTS as needed.
Plugin Interface Modules (Maven Central)
Java plugins interface modules are published under org.apache.bifromq. Match the plugin version to your BifroMQ deployment:
<dependency>
<groupId>org.apache.bifromq</groupId>
<artifactId>bifromq-plugin-[NAME]</artifactId>
<version>4.0.0-incubating</version>
</dependency>