hivemq-community-edition
hivemq-community-edition copied to clipboard
HiveMQ CE is a Java-based open source MQTT broker that fully supports MQTT 3.x and MQTT 5. It is the foundation of the HiveMQ Enterprise Connectivity and Messaging Platform
I am getting the following error when I run a test with` HiveMQContainer` tag `hivemq/hivemq-ce:latest ` (`latest` -> `2024.3`) ``` 2024-02-27 19:47:02,646 ERROR [tc.hivemq/hivemq-ce:latest] (pool-2-thread-1) Log output from the failed...
2024-02-28 10:45:42,237 ERROR - Uncaught exception in thread 'embedded-hivemq-state-change-executor'. java.lang.NoClassDefFoundError: javax/xml/bind/JAXBContext at com.hivemq.configuration.reader.ConfigFileReader.setConfigFromXML(ConfigFileReader.java:109) at com.hivemq.configuration.reader.ConfigFileReader.applyConfig(ConfigFileReader.java:77) at com.hivemq.configuration.ConfigurationBootstrap.bootstrapConfig(ConfigurationBootstrap.java:65) at com.hivemq.embedded.internal.EmbeddedHiveMQImpl.stateChange(EmbeddedHiveMQImpl.java:147) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) at java.base/java.lang.Thread.run(Thread.java:833) Caused by: java.lang.ClassNotFoundException: javax.xml.bind.JAXBContext at...
## Expected behavior Following the instructions from https://docs.hivemq.com/hivemq/latest/user-guide/install-hivemq.html#windows to install HiveMQ as a service. Service should get registered in windows and running properly ## Actual behavior Service gets registered properly...
## Problem or use case Incorporating *EmbeddedHiveMQ* in *OSGi* environment (such as *equinox*) might lead to *ClassCastException* during `LoggingBootstrap` if *logback* based logging is already setup in *OSGi*. ``` !STACK...
## Expected behavior When the HiveMQ CE broker starts (or restarts) with the [artcom/hivemq-retained-message-query-plugin](https://github.com/artcom/hivemq-retained-message-query-plugin) extension, the extension should add a PublishInboundInterceptor for all clients connected to the broker. ## Actual...
Running hivemq-ce using docker swarm (node engine 20.10.5) stack file: version: "3.5" services: hivemq: image: hivemq/hivemq-ce:2023.6 ports: - 1883:1883 deploy: placement: constraints: - node.hostname == twdcr01 environment: HIVEMQ_LOG_LEVEL: INFO Produces...
There was a spelling mistake in the xsd file. nonEmtpyString-> nonEmptyString **Motivation** **Changes**
link to openjdk in run.bat/run.sh pointed to jdk11 which made HiveMQ fail to start up in windows11/64bit. changing the link to point to the latest stable release get's HiveMQ working...
## Expected behavior if no Java is installed the ideal link would be https://adoptium.net/temurin/releases/?variant=openjdk ## Actual behavior current link provided https://adoptium.net/temurin/releases/?variant=openjdk11 which did throw errors when used on windows 11/x64,...
I try retrive subscriptionStore.iterateAllSubscriptions but catch exception with null on server with one cpu. But server with four cpu's all good. Can i turn some java/hivemq options for normaly run...