Actions
Overview¶
This demo use two docker images. The first one is running PostgreQL and the second one run the OOUACoreServer with its VfiPgSql.
Installation¶
Pull PG image¶
docker pull postgres:latest
run PG container¶
docker run -p 5432:5432 --name container-postgresdb -e POSTGRES_PASSWORD=admin -d postgres
password shal be admin. It's the one setup in the OOUA configuration file of the second image.
Pull OOUA image¶
docker pull michel4ce/oouademopg:latest
run OOUA container¶
Docker container run -d -p 1610:1610 --name ooua_pg -t michel4ce/oouademopg:latest
Connection from OPC UA client¶
The server is listening on port 1610
opc.tcp://localhost:1610/OpenOpcUaCoreServer
Updated by Michel Condemine Admin about 2 years ago ยท 4 revisions