Skip to content

Connect a PLOSSYS 5 System


For connecting a PLOSSYS 5 system as backend system for SEAL Operator, execute the following steps:


Activate the Connector and Specify the Keys for the Connection

In SEAL Operator, activate the connector and specify the keys for the connection:

  1. Export the complete configuration of SEAL Operator from Consul to a YAML file in order to ensure that the current configuration settings are used.

    operator config export <filename>.yml --insecure
    
  2. In the section of the PLOSSYS 5 (p5) connector, set cstatus to on. 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 due to the PLOSSYS 5 (p5) connector will not work otherwise!

  3. In the env section, specify the following keys for the operator-p5 service:

    env:
      service:
      ...
        operator-p5:
          tag:
            any:
              ACTION_EXECUTOR: P5
              PLOSSYS_IPP_URL: 'ipp://<plossys_5_server_name>:631'
      ...
    

    Literature - keys

    For further information about the available keys, refer to the description of the Keys.

  4. Save the <filename>.yml file and re-import it to Consul.

    operator config import <filename>.yml --insecure
    

Back to top