Modbus to database

This in-depth guide takes you step-by-step through building a robust data storage system, from downloading and installing MySQL to creating custom tables for your incoming and outgoing Ozeki messages. But it does not stop there! We will also guide you through configuring Modbus Gateway to seamlessly connect your sensors and devices directly to your MySQL database. Invest 15 minutes and unlock a powerful solution for organized, efficient data management within your Ozeki environment.

What is Modbus?

Modbus, a workhorse in industrial automation since 1979, is a communication protocol that acts like a common language for electronic devices. Imagine a master computer (like a supervisor) asking slave devices (sensors or controllers) for data (readings or status) or even sending control commands. It comes in various flavors for wired serial connections (RTU & ASCII) or network communication (TCP), making it a simple, open-standard, and reliable workhorse for industrial data exchange.

What is Modbus to database?

Modbus to database means recording the sensor data to a database using the Modbus protocol through the Modbus Gateway.

How does Modbus Gateway work?

Here is the flow:

  1. Modbus Communication: Devices (sensors, controllers) talk to each other using the Modbus protocol, exchanging data like temperature readings, machine statuses, or control commands.
  2. Modbus Gateway: This acts as a translator, capturing the Modbus data stream.
  3. Database Integration: The gateway translates the Modbus data into a format compatible with the database (e.g., MySQL). It then writes this data to designated tables within the database.

This process essentially funnels the real-time communication from your industrial setup into a structured database, allowing for long-term storage, analysis, and integration with other systems for improved decision-making and process optimization.

Saving Modbus data to MySQL database using Modbus Gateway (brief version)

  1. Download MySQL
  2. Install and configure MySQL
  3. Create database
  4. Create outgoing messages table
  5. Create incoming messages table
  6. Create user
  7. Grant privileges to user
  8. Install and configure Modbus TCP
  9. Install and configure DHT sensor
  10. Test DHT sensor
  11. Install and configure MySQL user
  12. Test MySQL connection

Installing MySQL database (Video Tutorial)

This quick video tutorial demonstrates how to easily download the right MySQL installer and properly install and set up your MySQL environment for smooth operation. It captures all the necessary steps while barely lasting longer than 3 minutes, making it a great watch.

Installing MySQL database (written guide)

First, head over to the download page of MySQL, and search for the MySQL Community version. Click the link near the bottom of the page, highlighted in Figure 1.

MYSQL webpage
Figure 1 - MYSQL webpage

Look for MySQL Installer for Windows, and click on it, as seen in Figure 2.

Select Windows installer
Figure 2 - Select Windows installer

On this page, click Download on whichever version you prefer, as seen in Figure 3. For the sake of this tutorial, we will choose the larger file, as it is the offline, portable version of the installer.

Download the installer
Figure 3 - Download the installer

To take full advantage of MySQL, we advise you to create a new account on this step. It is a simple process which should not take more then 10 minutes. If you wish to skip the account creating procedure, you could click the No thanks, just start my download button, and your browser should start downloading the files you need (Figure 4).

Start Download
Figure 4 - Start Download

Wait for the download to finish, then run the installer, as demonstrated by Figure 5.

Open the Installer
Figure 5 - Open the Installer

Inside the installer, select Server only, then click Next, similarly to Figure 6.

Select install Server only
Figure 6 - Select install Server only

Finalize the products you are installing, then click Execute, as you can see in Figure 7.

Execute installation
Figure 7 - Execute installation

Configure your database server to your preferences. Make sure to tick in the Open Windows Firewall ports for network access box, so your firewall will not disturb the dataflow on the port of your server. If you have everything matched with your preferences, please click Next. You can see our preferences on Figure 8.

Configure Type and Network settings
Figure 8 - Configure Type and Network settings

Make sure to choose the newer and more secure Strong Password Encryption for Authentication method. You can see your options on Figure 9. Click the Next button to proceed.

Select Authentication method
Figure 9 - Select Authentication method

If you chose the more secure method in the last step, you will be presented with the root account password creating window. Enter your desired password, then hit Next (Figure 10).

Define Root password
Figure 10 - Define Root password

Name your server. This will be how it appears among Windows processes. Make sure that the checkbox next to Start the MySQL Server at System Startup is ticked, so your server will start with Windows, as shown in Figure 11.

Configure Mysql service
Figure 11 - Configure Mysql service

Finalize your installation, and hit Execute, as seen in Figure 12.

Apply configuration
Figure 12 - Apply configuration

If you have done everything correctly so far, you should see a similar page to Figure 13. Click Finish to exit the installer.

Finish installation
Figure 13 - Finish installation

Creating Database tables (Video Tutorial)

Got 2 minutes? This quick video tutorial demonstrates how to easily create a database and tables into your newly created database, all in under 113 seconds, making it a very efficient use of your time.

Creating Database tables (in-depth version)

MySQL CREATE TABLE statements to copy:

    CREATE DATABASE ozekidb;

MySQL CREATE TABLE statements to copy:

CREATE TABLE ozekimessagein (
  id int(11) NOT NULL auto_increment,
  sender varchar(255) default NULL,
  receiver varchar(255) default NULL,
  msg text default NULL,
  senttime varchar(100) default NULL,
  receivedtime varchar(100) default NULL,
  operator varchar(100) default NULL,
  msgtype varchar(160) default NULL,
  reference varchar(100) default NULL,
  PRIMARY KEY (id)
  ) charset=utf8;
  ALTER TABLE ozekimessagein ADD INDEX(id);


CREATE TABLE ozekimessageout (
  id int(11) NOT NULL auto_increment,
  sender varchar(255) default NULL,
  receiver varchar(255) default NULL,
  msg text default NULL,
  senttime varchar(100) default NULL,
  receivedtime varchar(100) default NULL,
  reference varchar(100) default NULL,
  status varchar(20) default NULL,
  msgtype varchar(160) default NULL,
  operator varchar(100) default NULL,
  errormsg varchar(250) default NULL,
  PRIMARY KEY (id)) charset=utf8;
  ALTER TABLE ozekimessageout ADD INDEX (id);

Open the MySQL Shell and type \sql into it to change the shell mode to SQL, as illustrated in Figure 14.

mysql shell
Figure 14 - MySQL Shell

Connect to your server. Type \connect root@localhost:3306 into the shell. Where root is the user and localhost:3306 is the server address, as you can see in Figure 15.

connecting to server
Figure 15 - Connect to the server

Create a database statement by using the command above (Figure 16).

create database statement
Figure 16 - Create database statement

Next, copy the highlighted (Figure 17) part of the code from this article.

copy code from website
Figure 17 - Copy code from website

Paste and run it in MySQL Shell to create the table for incoming messages, as seen in Figure 18.

create incoming message table
Figure 18 - Create incoming message table

Once again, select and copy the highlighted part of the code above, similarly to Figure 19.

copy code from website
Figure 19 - Copy code from website

Paste and execute it in MySQL Shell to create outgoing message table (Figure 20).

create outgoing message table
Figure 20 - Create outgoing message table

To create a user and grant it privilages, use the following code, as seen in Figure 21.

CREATE USER 'ozekiuser'@'localhost' IDENTIFIED BY 'ozekipass';
GRANT ALL PRIVILEGES ON ozeki.* TO 'ozekiuser'@'localhost';
FLUSH PRIVILEGES;

create user and grant privileges
Figure 21 - Creating user and granting privileges

Save Modbus data to MySQL database (video tutorial)

The third and last video in this article goes over setting up the connection between your sensors and your MySQL database using Modbus Gateway in Ozeki. You will be taught to install and configure a Modbus TCP gateway, a MySQL connection, and even test your sensors. Sounds complicated, but this tutorial will help you hit the ground running in 3 minutes.

Save Modbus data to MySQL database (in-depth version)

Inside Ozeki 10, open Modbus Gateway, as seen in Figure 22.

Open Modbus Gateway app
Figure 22 - Open Modbus Gateway app

Click the Connect button on the toolbar, and click on Install next to Modbus TCP, as shown in Figure 23.

Install Modbus TCP connection
Figure 23 - Install Modbus TCP connection

Enter your host address and port to the corresponding fields, then hit Ok (Figure 24).

Connect to Modbus server
Figure 24 - Connect to Modbus server

In this page, select Devices, click Create new Modbus device, then choose your desired sensor. For the sake of this tutorial, we will go with DHT sensor, as seen in Figure 25.

Create DHT sensor device
Figure 25 - Create DHT sensor device

Configure your DHT sensor details in the right panel, and hit Ok, the same way as in Figure 26.

Configure DHT sensor
Figure 26 - Configure DHT sensor

Your device should appear in the list. Click on the Details button of it near the right hand side of the screen, similarly to Figure 27.

Open DHT sensor details
Figure 27 - Open DHT sensor details

Select Chat near the top, type "help" in the message field, and hit Send (Figure 28).

Send help message in chat
Figure 28 - Send "help" message in chat

This will list all the commands available to you. Look for readtemp and readhum, as demonstrated by Figure 29.

DHT sensor commands
Figure 29 - DHT sensor commands

Try your DHT sensor's functionality by typing and sending readtemp and readhum. These will return the temperature and humidity the sensor is currently reading, respectively (Figure 30).

Read data from DHT sensor
Figure 30 - Read data from DHT sensor

Click on the Apps button near the top of the screen, then scroll down until you see SQL messaging, and hit Install, highlighted in red in Figure 31.

Add new SQL messaging user
Figure 31 - Add new SQL messaging user

Look for MySQL and click Install (Figure 32).

Install MySQL user
Figure 32 - Install MySQL user

Configure your connection settings, then click Ok, as shown in Figure 33.

Configure database user
Figure 33 - Configure database user

On the page of your new connection, make sure the slider next to Connection in the left panel is turned on, as you can see in Figure 34.

Database connection established
Figure 34 - Database connection established

Click on the SQL page, enter and execute the following code (Figure 35):

INSERT INTO ozekimessageout (receiver, msg, status) VALUES ('DHT_sensor_1@localhost', 'readtemp', 'send');

Insert message into ozekimessageout table
Figure 35 - Insert message into ozekimessageout table

If you have done everything correctly, you should see a return similar to Figure 36.

Check answer in ozekimessagein table
Figure 36 - Check answer in ozekimessagein table

Can I use other Modbus devices?

Yes, Modbus Gateway allows you to monitor other Modbus devices, such as relays, temperature sensors, I/O modules and digital counters.

Can I use other database management systems?

Yes, for example you may choose to use MS Access, PostgreSQL, SQLAnywhere and more.