Configure the Fileupload Connector¶
Caution - do not turn off
Do not deactivate the Fileupload (scratch
) connector. Other connectors will not work otherwise!
The Fileupload (scratch
) connector represents the panel My Documents
in the user interface. After the installation, the connector is already activated. To ensure this has been done correctly and to specify the connection keys, execute the following steps.
-
In SEAL Operator, 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 Fileupload (
scratch
) connector, check ifcstatus
is set toon
.operator: connectors: ... scratch: cstatus: 'on' serviceName: operator-fileupload url: 'https://localhost:3009' ...
-
In the
env
section, specify the following keys for theseal-operator-fileupload
service:env: service: ... operator-fileupload: tag: any: MONGO_FILEUPLOAD_URL: 'mongodb://<mongodb_server>:27017/operator-fileupload' ...
Literature - keys
For further information about available keys, refer to the Key Reference.
Hint - AWS S3 as file storage
AWS S3 can be used for storing the file contents instead of MongoDB. For more information, refer to Connect S3.
-
Save the file.
-
Re-import it to Consul.
operator config import <filename>.yml --insecure
Next Step¶
Continue with: Connect a Backend System