The FlexDeploy HTTPS agent is an alternative way of connecting to an endpoint. It connects over HTTPS, thus not requiring SSH to be exposed. This may be the preferred approach for Zero Trust Architectures.
Support for the HTTPS Agent was released with FlexDeploy 6.5.0.3
...
Starting and stopping the agent
The scripts located in side inside the agent base installation directory are used for starting and stopping the agent.
...
Start
Linux
Code Block |
---|
cd $AGENT$HTTPS_AGENT_HOME ./StartFlexDeployHttpsAgent.sh |
Windows
Code Block |
---|
cd %AGENT%HTTPS_AGENT_HOME% StartFlexDeployHttpsAgent.bat |
...
Stop
Linux
Code Block |
---|
cd $AGENT$HTTPS_AGENT_HOME ./StopFlexDeployHttpsAgent.sh |
Windows
Code Block |
---|
cd %AGENT%HTTPS_AGENT_HOME% StopFlexDeployHttpsAgent.bat |
...
View the logs by going to HTTPS_AGENT_HOME/apache-tomcat-flexdeploy-https-agent/logs
...
To change the log level adjust the HTTPS_AGENT_HOME/apache-tomcat-flexdeploy-https-agent/conf/logging.properties file. Change the following lines to the desired log level.
Code Block | ||
---|---|---|
| ||
# FlexDeploy levels .level=INFO # change this one for every other logger then the agents flexagon.level=INFO#INFO # change this one and the next one for just agent logging directly com.flexagon.level=INFO |
...