Can anyone suggest.How to edit the Integrator ETL Server properties file??
As where the file will be and which file we need to edit??
Thanks,
MD
Can anyone suggest.How to edit the Integrator ETL Server properties file??
As where the file will be and which file we need to edit??
Thanks,
MD
Hi,
This is an example how to configure SMTP on CloverETL Sever running on Apache Tomcat.
First, you might need to create [tomcat_home]/bin/setenv file (if does not exist) with suffix .sh/bat according to OS.
Then create clover.properties and add the path to this file into setenv in the following format:
*nix-like systems
export JAVA_OPTS=“$JAVA_OPTS -Dclover.config.file=/path/to/clover.properties”
Windows systems:
set “JAVA_OPTS=%JAVA_OPTS% -Dclover.config.file=x:\path\to\clover.properties”
For more information please refer to the manual.
Below is an example of SMTP configuration. Update below property values with your details and add this to your clover.properties file:
clover.smtp.transport.protocol=smtp
clover.smtp.host=smtp.gmail.com
clover.smtp.port=465
clover.smtp.authentication=true
clover.smtp.username=jakub
clover.smtp.password=123456
For all possible properties please refer to the manual.
After editing the config.properties file with your SMTP configuration do not forget to restart server.