Upgrading Connectware to 2.4.0 (Docker)
How to upgrade Connectware to version 2.4.0 on Docker.
Last updated
Was this helpful?
How to upgrade Connectware to version 2.4.0 on Docker.
Connectware 2.4.0 adds the caFile property to the OPC UA Server, refreshes the Admin UI, and updates Node.js versions across Connectware services. For a complete list of changes, see the 2.4.0 changelog.
Follow the instructions in Upgrading Connectware (Docker) to upgrade to version 2.4.0.
This step applies if you are running OPC UA Server services with a custom PKI — that is, you have configured your own certificateFile and privateKeyFile signed by your organization's CA. If you do not use the OPC UA Server, skip this step.
Previously, the only way to provide your CA certificate to the OPC UA Server was to manually place it in /app/.config/node-opcua-default-nodejs inside the container. Connectware 2.4.0 introduces the caFile property as the recommended way to provide the CA certificate to the OPC UA Server.
To migrate, add caFile to the properties of your OPC UA Server resource in each affected service commissioning file, pointing to the path of your CA certificate inside the container:
resources:
opcuaServer:
type: Cybus::Server::Opcua
properties:
protocol: OpcuaServer
certificateFile: /path/to/server.crt
privateKeyFile: /path/to/server.key
caFile: /path/to/ca.crtFor more information, see CA Certificate.
Last updated
Was this helpful?
Was this helpful?

