If you use a proxy within your organizations internal network you may want to proxy the traffic to / from your Login Enterprise virtual appliance.
First from the management host console maintenance menu:
Mainentance menu > troubleshooting > open bash shell
Type the commands below, replace the example proxy address with your own. if credentials are required, the format is like this "http://user:pass@10.1.1.1:8080"
// Commands to set system wide proxy
export http_proxy="http://10.1.1.1:8080"
export https_proxy="http://10.1.1.1:8080"
export no_proxy="127.0.0.1,localhost"
// Command to perform an Enterprise online update
loginvsid update online
// Command to remove proxy settings
unset http_proxy
unset https_proxy
unset no_proxy
When using a reverse proxy you might need to enable web sockets in your proxy.
Comments
0 comments
Please sign in to leave a comment.