Skip to content

Commit b1e9a70

Browse files
committed
Merge branch 'master' of github.com:thingsboard/thingsboard.github.io into staging/4.3
2 parents ce2c9fc + 01f5796 commit b1e9a70

7 files changed

Lines changed: 45 additions & 32 deletions

File tree

_data/upgrade-instructions-data.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@
114114
release-date-edge: Sep 22, 2023
115115
manual-version-upgrade: "true"
116116
3.5.1.1:
117+
edge-only: "true"
117118
upgradable-from: "3.5.1"
118119
release-date-edge: Jul 4, 2023
119120
3.5.1:

_includes/docs/mqtt-broker/getting-started.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,20 @@ Through this tutorial, you will gain knowledge and proficiency in the following
1616
For more comprehensive information regarding the architecture of TBMQ, navigate to the following [document](/docs/{{docsPrefix}}mqtt-broker/architecture/).
1717
This resource provides detailed insights into the underlying structure and design principles of the broker.
1818

19-
## Try TBMQ Live
19+
## Try Live Demo
2020

21-
The fastest way to get started with TBMQ is to use our public demo instance at [demo.tbmq.io](https://demo.tbmq.io){:target="_blank"}.
21+
The fastest way to get started with TBMQ is to use our free public MQTT broker at [demo.tbmq.io](https://demo.tbmq.io){:target="_blank"}.
2222
This sandbox environment allows you to explore TBMQ features without any installation.
2323

2424
**MQTT connection details:**
2525

26-
| Parameter | Value |
27-
|-----------|-------|
28-
| Host | demo.tbmq.io |
29-
| TCP Port | 1883 |
30-
| TLS Port | 8883 |
31-
| Username | tbmq_demo_username |
32-
| Password | *(leave empty)* |
26+
| Parameter | Value |
27+
|-----------|-----------------|
28+
| Host | demo.tbmq.io |
29+
| TCP Port | 1883 |
30+
| TLS Port | 8883 |
31+
| Username | demo |
32+
| Password | *(leave empty)* |
3333

3434
You can start publishing and subscribing to topics immediately using these credentials.
3535
To access the TBMQ UI and explore sessions, subscriptions, and other features, [sign up](https://demo.tbmq.io/signup){:target="_blank"} for a free account.

_includes/docs/mqtt-broker/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ Its distributed **cluster architecture** takes scalability even further, support
99

1010
For installation instructions and detailed insights into its architecture and MQTT features, refer to the official TBMQ documentation.
1111

12-
## Try TBMQ Live
12+
## Try Live Demo
1313

14-
The fastest way to get started is to use our public demo instance — no installation required.
14+
The fastest way to get started is to use our **free public MQTT broker** — no installation required.
1515

1616
<div class="doc-features row mt-4 align-items-stretch">
1717
<div class="col-12 col-sm-7 col-lg-7 mb-4 d-flex">
@@ -21,7 +21,7 @@ The fastest way to get started is to use our public demo instance — no install
2121
<b>Host:</b> <code>demo.tbmq.io</code><br>
2222
<b>TCP Port:</b> <code>1883</code><br>
2323
<b>TLS Port:</b> <code>8883</code><br>
24-
<b>Username:</b> <code>tbmq_demo_username</code><br>
24+
<b>Username:</b> <code>demo</code><br>
2525
<b>Password:</b> <i>leave empty</i>
2626
</div>
2727
</div>
@@ -31,7 +31,7 @@ The fastest way to get started is to use our public demo instance — no install
3131
<img class="feature-logo" src="https://img.thingsboard.io/feature-logo/getting-started.svg" alt="Sign up icon">
3232
<div class="feature-title">Sign Up for Free</div>
3333
<div class="feature-text">
34-
Create an account to access the live TBMQ Demo UI — monitor sessions, subscriptions, and broker statistics in real time.
34+
Create an account to access the live TBMQ Demo Broker — monitor sessions, subscriptions, and broker statistics in real time.
3535
</div>
3636
</a>
3737
</div>

_includes/templates/mqtt-broker/getting-started/pub-sub-demo.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
To subscribe to the **sensors/temperature** topic and start receiving messages, use the following command:
44

55
```bash
6-
mosquitto_sub -d -h demo.tbmq.io -p 1883 -t sensors/temperature -q 1 -u tbmq_demo_username
6+
mosquitto_sub -d -h demo.tbmq.io -p 1883 -t sensors/temperature -q 1 -u demo
77
```
88
{: .copy-code}
99

@@ -16,6 +16,6 @@ If you have signed up for a demo account, log in to [demo.tbmq.io](https://demo.
1616
To publish a message to the **sensors/temperature** topic, use the following command:
1717

1818
```bash
19-
mosquitto_pub -d -h demo.tbmq.io -p 1883 -t sensors/temperature -m 32 -q 1 -u tbmq_demo_username
19+
mosquitto_pub -d -h demo.tbmq.io -p 1883 -t sensors/temperature -m 32 -q 1 -u demo
2020
```
2121
{: .copy-code}

_includes/upgrade-instructions.liquid

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
{% if item[1].vulnerable == 'true' %}
1111
{% continue %}
1212
{% endif %}
13+
{% if item[1].edge-only == 'true' %}
14+
{% continue %}
15+
{% endif %}
1316

1417
{% assign version = item[0] %}
1518
{% assign data = item[1] %}

installations/index.html

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -665,18 +665,18 @@ <h4>Docker (Linux or Mac OS)</h4>
665665
<div class="install-content-description col-lg-7">
666666
<h1>MQTT Broker</h1>
667667
<div class="install-content-details">
668-
<p>TBMQ is a highly scalable and durable <a target="_blank" href="/products/mqtt-broker/">MQTT message broker</a> built for real-time data processing across IoT ecosystems of any scale. It efficiently handles millions of concurrent client connections and processes millions of messages per second while maintaining low latency and reliable delivery. Designed for horizontal scalability, TBMQ seamlessly expands across cluster nodes to support massive deployments with millions of connected devices. <a target="_blank" href="/docs/mqtt-broker">Read More</a>.</p>
668+
<p><b>TBMQ</b> is a highly scalable and durable <a target="_blank" href="/products/mqtt-broker/">MQTT message broker</a> built for real-time data processing across IoT ecosystems of any scale. It efficiently handles millions of concurrent client connections and processes millions of messages per second while maintaining low latency and reliable delivery. Designed for horizontal scalability, TBMQ seamlessly expands across cluster nodes to support massive deployments with millions of connected devices. <a target="_blank" href="/docs/mqtt-broker">Read More</a>.</p>
669669
</div>
670670
<div class="row container button-container">
671-
<a target="_blank" id="TryItNow_TBMQ_Install_CE" class="btn-blue gtm_button" href="/docs/mqtt-broker/install/installation-options/">
672-
Install TBMQ CE
671+
<a target="_blank" id="TryItNow_TBMQ_Demo" class="btn-blue gtm_button" href="https://demo.tbmq.io/signup">
672+
Live Demo
673673
</a>
674-
<a target="_blank" id="TryItNow_TBMQ_Install_PE" class="btn-blue gtm_button" href="/docs/pe/mqtt-broker/install/installation-options/">
675-
Install TBMQ PE
676-
</a>
677-
<a target="_blank" id="TryItNow_TBMQ_Pricing" class="btn-blue secondary gtm_button" href="/pricing/?section=tbmq-options">
678-
Pricing
674+
<a target="_blank" id="TryItNow_TBMQ_Install_CE" class="btn-blue secondary gtm_button" href="/docs/mqtt-broker/install/installation-options/">
675+
Download CE
679676
</a>
677+
<a target="_blank" id="TryItNow_TBMQ_Install_PE" class="btn-blue secondary gtm_button" href="/docs/pe/mqtt-broker/install/installation-options/">
678+
Start PE Trial
679+
</a>
680680
</div>
681681
</div>
682682
<div class="col d-flex align-items-center justify-content-center margin-mobile">
@@ -690,23 +690,23 @@ <h1>MQTT Broker</h1>
690690
<div class="column">
691691
<div class="item-row">
692692
<div class="item-text">
693-
<a target="_blank" class="item-title" href="/docs/mqtt-broker/reference/100m-connections-performance-test/">Scalability</a>
693+
<a target="_blank" class="item-title" href="/docs/mqtt-broker/reference/100m-connections-performance-test/">Unlimited Horizontal Scaling</a>
694694
<p>
695695
Scale horizontally to manage more than 100M MQTT connections on a single cluster
696696
</p>
697697
</div>
698698
</div>
699699
<div class="item-row">
700700
<div class="item-text">
701-
<a target="_blank" class="item-title" href="/docs/mqtt-broker/reference/3m-throughput-single-node-performance-test/">Performance</a>
701+
<a target="_blank" class="item-title" href="/docs/mqtt-broker/reference/3m-throughput-single-node-performance-test/">Million-Message Throughput</a>
702702
<p>
703703
Process millions of messages per second with 1 TBMQ server and single-digit latency
704704
</p>
705705
</div>
706706
</div>
707707
<div class="item-row">
708708
<div class="item-text">
709-
<a target="_blank" class="item-title" href="/docs/mqtt-broker/architecture/">Fault tolerance</a>
709+
<a target="_blank" class="item-title" href="/docs/mqtt-broker/architecture/">Masterless High Availability</a>
710710
<p>
711711
Prevent single point of failure with masterless nodes in the cluster
712712
</p>
@@ -716,23 +716,23 @@ <h1>MQTT Broker</h1>
716716
<div class="column">
717717
<div class="item-row">
718718
<div class="item-text">
719-
<a target="_blank" class="item-title" href="/docs/mqtt-broker/getting-started/">MQTT version compatibility</a>
719+
<a target="_blank" class="item-title" href="/docs/mqtt-broker/getting-started/">Universal MQTT Support</a>
720720
<p>
721721
MQTT 3.x and 5.0 compatible for a seamless and secure connection experience
722722
</p>
723723
</div>
724724
</div>
725725
<div class="item-row">
726726
<div class="item-text">
727-
<a target="_blank" class="item-title" href="/docs/mqtt-broker/architecture/">Durability</a>
727+
<a target="_blank" class="item-title" href="/docs/mqtt-broker/architecture/">Zero Data Loss Guarantee</a>
728728
<p>
729729
Guarantee the persistence and replication of your data to ensure it's never lost
730730
</p>
731731
</div>
732732
</div>
733733
<div class="item-row">
734734
<div class="item-text">
735-
<a target="_blank" class="item-title" href="/docs/mqtt-broker/install/installation-options/">Cloud-Native and K8s-Compliant</a>
735+
<a target="_blank" class="item-title" href="/docs/mqtt-broker/install/installation-options/">K8s & Cloud Agnostic</a>
736736
<p>
737737
Deploy in cloud or on-premises using K8s scripts with ease
738738
</p>

services/services.sass

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,13 +139,22 @@
139139
.card
140140
width: 100%
141141
.bottom
142+
position: relative
142143
display: flex
143144
flex-direction: column
144145
text-align: center
145-
margin: 0 0 -50px -50%
146-
background-color: #F9FBFE
147-
width: 200%
146+
margin: 0 0 -50px 0
148147
padding: 50px 0
148+
&:before
149+
content: ""
150+
background-color: #F9FBFE
151+
width: 200vw
152+
left: 50%
153+
transform: translateX(-50%)
154+
height: 100%
155+
position: absolute
156+
top: 0
157+
z-index: -1
149158
.contact-button
150159
cursor: pointer
151160
width: 350px

0 commit comments

Comments
 (0)