Connect a PLOSSYS 5 System¶
To connect a PLOSSYS 5 system as backend system, in SEAL Operator, activate the connector and specify the keys for the connection:
-
Open a Command Prompt or PowerShell.
-
Export the complete configuration of SEAL Operator from Consul to a YAML file with the following command. So you're making sure the current configuration settings are being used.
operator config export <filename>.yml --insecure
-
Edit the exported file
<filename>.yml
. -
In the section of the PLOSSYS 5 (
p5
) connector, setcstatus
toon
. The Fileupload (scratch
) connector has to be activated as well.operator: connectors: ... p5: cstatus: 'on' serviceName: operator-p5 url: 'https://localhost:3013' scratch: cstatus: 'on' serviceName: operator-fileupload url: 'https://localhost:3009' ...
Caution - do not turn off
Do not deactivate the Fileupload (
scratch
) connector. The PLOSSYS 5 (p5
) connector will not work otherwise! -
In the
env
section, specify the following keys for theoperator-p5
service:-
ACTION_EXECUTOR
: Backend system, hereP5
-
PLOSSYS_IPP_URL
: URL of the check-in service of the PLOSSYS 5 system
env: service: ... operator-p5: tag: any: ACTION_EXECUTOR: P5 PLOSSYS_IPP_URL: 'ipp://<plossys_5_server_name>:631' ...
Literature - keys
For further information about available keys, refer to the Key Reference.
-
-
Save the
<filename>.yml
file. -
Re-import it to Consul.
operator config import <filename>.yml --insecure