How to disable security, to use standard tcp or ws instead of tcp+ssl or wss.
How to achieve this?
less than a minute
In the configuration, the server is by default set to a secure URL connection.
The security can be disabled inside the config.json:
Example: Secure URL connection:
"Server": {
"Default": {
"URL": "wss://*:5568:5567",
"Direction": "listen",
"Login": "disable",
"Certificate": "/etc/ssl/certs/motorcortex.pem"
Disable URL security by changing wss://*5568:5567
to ws://*5558:5557
.
Example: Unsecure URL connection:
"Server": {
"Default": {
"URL": "ws://*:5558:5557",
"Direction": "listen",
"Login": "disable",
"Certificate": "/etc/ssl/certs/motorcortex.pem"
Connect to DESK:
To connect to DESK, you must disable security and allow insecure scripts:
- Fill in
192.168.2.100:5558/5557
. - Press to unlock , changes connection from secure to insecure.
- Press
Connect
. - Allow Chrome to
load unsafe scripts
. - Press
Connect
.
Connect to GRID
To connecting to GRID, inside connection
and Client Connection Settings
:
- unchecked secure checkbox
- Press
connection
, fill in:- machine IP:
192.168.2.100
. - request port:
5558
/ subscribe port:5557
. - username:
admin
. - password:
vectioneer
.
- machine IP:
- Press
Connect
. - Allow chrome to
load unsafe scripts
.
Note
Beware the insecure URL connection can cause the notification GUI is disconnected, connecting to 192.168.2.100
.