Building and Integrating QtMQTT on Kylin Linux for IoT Applications

QtMQTT is a Qt-based client library that enables MQTT protocol communication with brokers, commonly used in embedded and IoT scenarios. Kylin Linux—a domestic Chinese OS derived from Ubuntu—is widely deployed in secure industrial and edge environments. This guide walks through building, testing, and system-integrating QtMQTT on Kylin Linux (v10 ...

Posted on Fri, 19 Jun 2026 16:27:29 +0000 by DimeDropper

Implementing Message Tracing in RocketMQ

Core Concepts Message tracing captures the complete lifecycle of a message, including: Producer send timestamp Broker storage details Consumer consumption events Timing metrics at each stage Configuration Broker Setup # Enable tracing in broker.conf traceTopicEnable=true Producer Implementation public class MessageProducer { private stat ...

Posted on Sat, 13 Jun 2026 17:29:59 +0000 by sinter4911

EMQX Configuration Fundamentals and Distributed Cluster Architecture

Network Endpoint Allocation EMQX relies on a predefined set of network ports to handle different protocol layers and administrative interfaces. These endpoints can be adjusted in the primary configuration file alongside their respective plugin manifests. # Primary MQTT over TCP listener.tcp.primary.address = 0.0.0.0:1883 # Secure MQTT over TLS ...

Posted on Wed, 27 May 2026 20:34:23 +0000 by fusioneko

ESP8266 Development with Arduino on Ubuntu

Connect the ESP8266 module via USB, which should create a serial device such as /dev/ttyUSB0. Modify its permsisions with the command sudo usermod -a -G dialout $USER. Log out and back in for the change to take effect. After installing the Arduino IDE, configure it as follows: In File > Preferences, set Additional Boards Manager URLs to: ht ...

Posted on Thu, 21 May 2026 20:00:48 +0000 by jhbalaji

Implementing MQTT Connection Recovery in Java with Eclipse Paho

Introduction to MQTT and Connection Resilience MQTT (Message Queuing Telemetry Transport) is a lightweight, publish-subscribe network protocol ideal for IoT and mobile applications. A critical aspect of building robust MQTT clients is handling connection failures gracefully. Network instability can cause a client to disconnect, and a well-desig ...

Posted on Thu, 14 May 2026 07:33:27 +0000 by ss-mike

Directly Connecting ESP8266 to Alibaba Cloud IoT via MQTT

Hardware and Platform Prpearation The following setup uses an ESP8266 Node-MCU board to connect directly to Alibaba Cloud IoT, with MQTT.fx acting as the remote client for controlling the onboard LED. Register an Alibaba Cloud account, then navigate to the IoT Platform console to create a product and a device. Once the device appears in the lis ...

Posted on Sat, 09 May 2026 21:00:57 +0000 by webv

Comprehensive Guide to EMQX MQTT Broker FAQs and Troubleshooting

Scalability and Topic Limits EMQX does not impose a hard limit on the number of topics. You can scale topics as needed with minimal impact on performance, provided the system has sufficient memory and CPU resources. Data Storage in Open Source vs. Enterprise The Open Source version of EMQX does not include built-in data persistence features. To ...

Posted on Sat, 09 May 2026 17:57:26 +0000 by phpnewbie112

Working with EC20 4G Modules for IoT Connectivity

Comparing 4G and WiFi Modules 4G modules require a SIM card with active data plan to establish internet connectivity, similar to mobile devices. WiFi modules connect through existing router networks. Key differences: 4G modules provide mboility with cellular coverage WiFi requires fixed infrastructure Both require valid credentials (SIM data p ...

Posted on Sat, 09 May 2026 01:56:17 +0000 by fontener

Installing Open-Source EMQX MQTT Broker and Getting Started with MQTTX Client

What is EMQX? EMQX is an open-source, highly scalable distributed MQTT message broker designed for IoT and real-time communication applications. EMQX 5.0 clusters support up to 100 million concurrent MQTT connections, with single-server throughput reaching millions of messages per second and millisecond-level low latency. It supports multiple p ...

Posted on Fri, 08 May 2026 09:00:04 +0000 by steply

Building an IoT Platform with ESP8266 and OneNet Cloud: Data Upload and Cloud-Initiated Commands

Introduction This guide walks you through building your own IoT platform using an ESP8266 module and the OneNet cloud service. You will learn how to upload sensor data from the ESP8266 to the platform and receive commands issued from the cloud. Refer to the following official documentation: OneNet API referance: https://open.iot.10086.cn/doc/v ...

Posted on Thu, 07 May 2026 16:23:58 +0000 by JackJack