Contents
Cirrus Link Resources
Cirrus Link Website
Contact Us (Sales/Support)
Forum
Cirrus Link Modules Docs for Ignition 7.9.x
Inductive Resources
Ignition User Manual
Knowledge Base Articles
Inductive University
Forum
...
There is nothing unique about connecting to a IoT Bridge instance over any other other Microsoft Ubuntu based VM instance. Microsoft provides detailed instructions on this process of connecting via SSH and SCP ***here*** if you are unfamiliar with it:
https://learn.microsoft.com/en-us/azure/virtual-machines/copy-files-to-vm-using-scp
https://learn.microsoft.com/en-us/azure/virtual-machines/linux-vm-connect
The following shows the files that are likely of most interest with regard to IoT Bridge functionality:
# This is the core configuration file where IoT Bridge for Azure and MQTT Server configuration is performed - details
# can be found here.
/opt/ibaz/conf/ibaz.properties
# This is the log file directory. Cirrus Link support may ask for these files to resolve configuration, connectivity,
# or other issues
/opt/ibaz/log
# For support tickets and debugging purposes Cirrus Link support may ask you to make modifications to this file on
# occasion
/opt/ibaz/conf/logback.xml
# This starts the IoT Bridge service - note the service starts automatically on boot so using this script directly is
# only generally need for manual stop/start/restart and/or debugging
sudo systemctl start ibaz
# This stops the IoT Bridge service
sudo systemctl stop ibaz
...