Getting Started Documentation Devices Library
Architecture API FAQ
On this page

Installing Klyff Edge on Windows

doc warn icon

Rules of Compatibility Between Klyff Edge and Klyff Server Versions:

  • A Klyff Edge version X.Y.Z is compatible with the same Klyff Server version X.Y.Z and any later versions.
  • A Klyff Edge version X.Y.Z is NOT compatible with Klyff Server versions preceding X.Y.Z.

Example: Klyff Edge version 3.3.4.1 is compatible with Klyff Server version 3.3.4.1 and subsequent versions (3.4.0, 3.4.1, …). However, Klyff Edge version 3.4.0 is NOT compatible with Klyff Server version 3.3.4.1 or any prior versions (3.3.4, 3.3.3, …). In such scenarios, Klyff Server 3.3.4.1 or a preceding version must first be upgraded to Klyff Server 3.4.0 or a later version.

Please ensure that the Klyff Server is updated to the latest version before proceeding.

doc warn icon

Please consider to use Linux installation option, because Linux is the most stable platform for running Klyff. Windows installation will be deprecated in the future. You can find Linux installation guides on Installation Guide page.

This guide describes how to install Klyff Edge on Windows machine. Instructions below are provided for Windows 10/8.1/8/7 32-bit/64-bit.

Prerequisites

To start utilizing the Klyff Edge, it is essential to have an operational Klyff server that supports Edge functionality.

The easiest way is to use Klyff Cloud server.

Alternatively, you can install the Klyff Professional Edition server on-premise. For this, please refer to the Klyff Professional Edition installation guide.

Edge Hardware Requirements

The hardware specifications needed for Klyff Edge are determined by both the number of devices connected locally and the extent of GUI interaction:

  • Light Usage: If you intend to operate Klyff Edge with minimal GUI interactions (such as local dashboards and device management) and anticipate connecting fewer than 100 devices to a single machine, a minimum of 1GB of RAM should suffice.

  • Heavy Usage: Conversely, for heavy GUI interactions and connections to 100+ devices on a single machine, we recommend allocating at least 4GB of RAM to ensure optimal performance.

Provisioning a new Edge instance on the Klyff server

Additionally, you will need to provision Edge on the Klyff server.

  • Sign in to your Klyff PE instance and navigate to the “Edge Management” section -> “Instances” page. Click the “+” icon in the top right corner and select “Add new edge”.

  • Enter a name for your edge. For instance, “My New Edge”. If necessary, update the cloud endpoint. This URL should be accessible from the edge. If the edge is running in a Docker container, using “localhost” is incorrect. It must be the IP address of the machine where Klyff PE is running and accessible by the edge container. If you are using the Klyff Cloud server to evaluate the edge, leave this setting as it is. Click “Add” to confirm adding your new Edge.

  • Your new edge should now appear at the top of the list, as entries are sorted by creation time by default.

Installation and Configuration

Step 1. Install Java 17 (OpenJDK)

Klyff service is running on Java 17. Follow this instructions to install OpenJDK 17.

  • Visit Open JDK Download Page. Go to “Other platforms and versions”, select “Operating System” as “Windows”, “Architecture” as “x64”, “Version” as “17 - LTS” and download JDK .msi package.
  • Run the downloaded MSI package and follow the instructions. Make sure you have selected “Add to PATH” and “Set JAVA_HOME variable” options to “Will be installed on local hard drive” state.
  • Visit PostgreSQL JDBC Download Page to download PostgreSQL JDBC Driver. Choose the latest available option.
  • Create the folder C:\Program Files\JDBC and copy downloaded file there. Then, add a new global variable - run PowerShell as an administrator and execute the following command. Do not forget to change “postgresql-42.2.18.jar” in the command to match the downloaded version.
    1
    
    [System.Environment]::SetEnvironmentVariable("CLASSPATH", '.;"C:\Program Files\JDBC\postgresql-42.2.18.jar"', [System.EnvironmentVariableTarget]::Machine)
    

You can check the installation using the following command (using Command Prompt):

1
java -version

Expected command output is:

1
2
3
4
C:\Users\User>java -version
openjdk version "17.x.xx" 
OpenJDK Runtime Environment Temurin-17.x.xx (...)
OpenJDK 64-Bit Server VM Temurin-17.x.xx (...)

Step 2. Configure PostgreSQL

Klyff Edge uses PostgreSQL database as a local storage.

PostgreSQL Installation

Download the installation file (PostgreSQL 12.17 or newer releases) here and follow the installation instructions.

During PostgreSQL installation, you will be prompted for superuser (postgres) password. Don’t forget this password. It will be used later. For simplicity, we will substitute it with “postgres”.

Create Klyff Edge Database

Once installed, launch the “pgAdmin” software and login as superuser (postgres). Open your server and create database tb_edge with owner “postgres”.

Step 3. Klyff Edge service installation

Download and extract the package.

1
https://dist.thingsboard.io/tb-edge-windows-3.8pe.zip

Note: We assume you have unzipped package to default location: C:\Program Files (x86)\tb-edge

Step 4. Configure Klyff Edge

Open the Notepad or other editor as administrator user (right click on the app icon and select “Run as administrator”).
Open the following file for editing (select “All Files” instead of “Text Documents” in file choosing dialog, the encoding is UTF-8):

1
C:\Program Files (x86)\tb-edge\conf\tb-edge.yml
Database configuration

In the file “tb-edge.yml” from the previous step locate “# SQL DAO Configuration” block.

Don’t forget to replace YOUR_POSTGRES_PASSWORD_HERE with your real postgres user password:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
# SQL DAO Configuration
spring:
  data:
    jpa:
      repositories:
        enabled: "true"
  jpa:
    hibernate:
      ddl-auto: "none"
  datasource:
    driverClassName: "${SPRING_DRIVER_CLASS_NAME:org.postgresql.Driver}"
    url: "${SPRING_DATASOURCE_URL:jdbc:postgresql://localhost:5432/tb_edge}"
    username: "${SPRING_DATASOURCE_USERNAME:postgres}"
    password: "${SPRING_DATASOURCE_PASSWORD:YOUR_POSTGRES_PASSWORD_HERE}"
Configure cloud connectivity

Click on Copy Edge Key and Copy Edge Secret in the edge details section. This will copy your edge credentials to your clipboard. Be sure to store them in a secure location, as these values will be needed in the following steps.

Locate “# Cloud configuration” block and replace PUT_YOUR_EDGE_KEY_HERE and PUT_YOUR_EDGE_SECRET_HERE with Edge key and secret respectively.

Please replace PUT_YOUR_CLOUD_IP with an IP address of the machine where Klyff PE version is running:

  • Use thingsboard.cloud in case you are connecting edge to Klyff Cloud.

NOTE: thingsboard.cloud uses SSL protocol for edge communication. Please change CLOUD_RPC_SSL_ENABLED to true as well.

  • Use localhost in case edge is running on the same machine where cloud instance is running.
  • Use X.X.X.X IP address in case edge is connecting to the cloud instance in the same network or in the docker.
1
2
3
4
5
6
7
8
9
# Cloud configuration
cloud:
    routingKey: "${CLOUD_ROUTING_KEY:PUT_YOUR_EDGE_KEY_HERE}"
    secret: "${CLOUD_ROUTING_SECRET:PUT_YOUR_EDGE_SECRET_HERE}"
    rpc:
      host: "${CLOUD_RPC_HOST:PUT_YOUR_CLOUD_IP}"
      ssl:
        # Set to 'true' if using thingsboard.cloud or if you have configured a TLS connection on your Server; set to 'false' otherwise.
        enabled: "${CLOUD_RPC_SSL_ENABLED:true/false}" 
Doc info icon

If Klyff Edge is set to run on the same machine where the Klyff PE server is operating, you need to update additional configuration parameters to prevent port collision between the Klyff server and Klyff Edge.

Please locate and change next parameters in Klyff Edge configuration file (C:\Program Files (x86)\tb-edge\conf\tb-edge.yml):


port: “${HTTP_BIND_PORT:18080}”

bind_port: “${MQTT_BIND_PORT:11883}”

bind_port: “${COAP_BIND_PORT:15683}”

bind_port: “${LWM2M_ENABLED:false}”


bind_port: “${INTEGRATIONS_RPC_PORT:19090}”

Ensure that the ports listed above (18080, 11883, 15683) are not being used by any other application.

Step 5. Run installation script

Launch windows shell (Command Prompt) as Administrator. Change directory to your Klyff Edge installation directory.

Execute install.bat script to install Klyff Edge as a Windows service. This means it will be automatically started on system startup. Similar, uninstall.bat will remove Klyff Edge from Windows services. The output should be similar to this one:

1
2
3
4
5
6
7
C:\Program Files (x86)\tb-edge\install.bat
Detecting Java version installed.
CurrentVersion 110
Java 11 found!
Installing Thingsboard Edge...
...
Klyff Edge installed successfully!

Step 6. Start Klyff Edge service

Now let’s start the Klyff Edge service! Open the command prompt as an Administrator and execute the following command:

1
net start tb-edge

Expected output:

1
2
The Klyff Edge Server Application service is starting.
The Klyff Edge Server Application service was started successfully.

In order to restart the Klyff Edge service you can execute following commands:

1
2
net stop tb-edge
net start tb-edge

Step 7. Open Klyff Edge UI

Once started, you will be able to open Klyff Edge UI using the following link http://localhost:8080.

Doc info icon

If you changed the Edge HTTP bind port to 18080 during Edge installation, use the following Klyff Edge UI link: http://localhost:18080.

Please use your tenant credentials from local Server instance or Klyff Cloud to log in to the Klyff Edge.

Troubleshooting

The log files are located in logs folder (“C:\Program Files (x86)\tb-edge\logs” in our case).

The tb-edge.log file should contain following line:

1
YYYY-MM-DD HH:mm:ss,sss [main] INFO  o.t.server.TbEdgeApplication - Started TbEdgeApplication in x.xxx seconds (JVM running for x.xxx)

In case of any unclear errors, use general troubleshooting guide or contact us.

Windows firewall settings

In order to have external access to Klyff Web UI and device connectivity (HTTP, MQTT, CoAP) you need to create a new inbound rule with Windows Firewall with Advanced Security.

  • Open “Windows Firewall” from “Control Panel”:

image

  • Click “Advanced settings” on the left panel:

image

  • Select “Inbound Rules” on the left panel, then click “New Rule…” on the right “Actions” panel:

image

  • Now new “New Inbound Rule Wizard” window will open. On the first step “Rule Type” select “Port” option:

image

  • On the “Protocol and Ports” step select “TCP” protocol and enter port list 8080, 1883, 5683 in the “Specific local ports” field:

image

  • On the “Action” step leave “Allow the connection” option selected:

image

  • On the “Profile” step select Windows network profiles when to apply this rule:

image

  • Finally, give the name to this rule (for ex. “Klyff Service Networking”) and click “Finish”.

image

Next Steps

Congratulations! You have successfully provisioned, installed and connected Klyff Edge to Klyff server.

You can continue with Getting started guide to get the basic knowledge of Klyff Edge or you can jump directly to more advanced topics: