Running OPC UA .Net Standard PubSub reference server on Ubuntu 22.04 using dotnet-sdk-6.0
System info:OS: Ubuntu 22.04
OPC UA .Net Standard under test: 1.4.371.96
Install MQTT broker
$: sudo apt install mosquitto
Install dotnet-sdk-6.0
$: sudo apt install dotnet-sdk-6.0
Install git as needed
$: sudo apt install git
Clone OPC UA .Net Standard git repo
$: mkdir ~/prj $: cd ~/prj $: git clone https://github.com/OPCFoundation/UA-.NETStandard.git $: cd UA-.NETStandard $: git checkout refs/tags/1.4.371.96
Run publisher
$: dotnet run --project Applications/ConsoleReferencePublisher/ConsoleReferencePublisher.csproj --framework net6.0
Run subscriber (on another terminal)
$: cd ~/prj/UA-.NETStandard $: dotnet run --project Applications/ConsoleReferenceSubscriber/ConsoleReferenceSubscriber.csproj --framework net6.0
Comments