I have to configure the proxy on my Connect server, however, I am not finding the configuration file. Follow the documentation:
admhelp.microfocus.com/.../proxy-setup.htm
Can anyone help with the case?
Cybersecurity
DevOps Cloud
IT Operations Cloud
If an answer to your question is correct, click on "Verify Answer" under the "More" button. The answer will now appear with a checkmark. Please be sure to always mark answers that resolve your issue as verified. Your fellow Community members will appreciate it!  Learn more
I have to configure the proxy on my Connect server, however, I am not finding the configuration file. Follow the documentation:
admhelp.microfocus.com/.../proxy-setup.htm
Can anyone help with the case?
Hi Davisson,
The instructions on the online help page (link above) are for running MF Connect (Tomcat) on Windows...
you folks have a linux server don;t you?
you'll need the setenv.sh file in Webserver/bin (below)
Configure Tomcat to use a proxy server in a Linux environment
1.Create a file named setenv.sh in the $CATALINA_HOME\bin folder.
2. Enter the following lines:
export CATALINA_OPTS="$CATALINA_OPTS -Dhttp.proxyHost=192.168.0.10"
export CATALINA_OPTS="$CATALINA_OPTS -Dhttp.proxyPort=1234"
export CATALINA_OPTS="$CATALINA_OPTS -Dhttps.proxyHost=192.168.0.10"
export CATALINA_OPTS="$CATALINA_OPTS -Dhttps.proxyPort=1234"
3. Replace the IP and port numbers with those of your proxy servers.
4. Restart the Tomcat Server.