Unable to access ETPServer in local machine and also Unable to build SSL client locally
Issues:
-
First issue we faced is after starting the ETPServer in port 9002, we tried to
List all server options available
with this command - sudo docker compose up open_etp_server_runtime And got the following error -
Next issue was we tried to ping the ETP server with ws protocol using this command - sudo docker compose run open_etp_server_runtime openETPServer probe -S ws://open-etp-server_open_etp_server_runtime_run_e10b3b6174b5:9002 --ping --debug –verbose and faced "Server handshake response error"
-
We tried same command (sudo docker compose run open_etp_server_runtime openETPServer probe -S wss://open-etp-server_open_etp_server_runtime_run_e10b3b6174b5:9002 --ping --debug –verbose) with wss protocol this time and got the following error.
-
Then we tried to build SSL client locally using command docker build . -f Dockerfile.bundle -t open-etp:ssl-client --build-arg CLIENT_SSL=true And got this error
-
By looking at the error it seemed to us that this "-j" (defining the number of cores) option is not supported with cmake and we tried to remove this (-j 2) from the script and reran the command and got this error this time
For your information below are the environment details we are using
**Linux:**
NAME="Red Hat Enterprise Linux"
VERSION="8.6 (Ootpa)"
ID="rhel"
**Docker:**
Client: Docker Engine - Community
Version: 20.10.18
**Docker Compose:**
Docker Compose version v2.10.2
Could you please guide us and help us to resolve the issues?