Posts

Showing posts from July, 2026

Updating WSO2 API Manager 4.7 Behind a Corporate Proxy

Image
With WSO2 API Manager 4.7 , the Update Tool is no longer bundled with the product distribution. Instead, you must first download it using the update_tool_setup.sh script, which then installs the platform-specific update utility (for example, wso2update_linux ). If your environment is behind a corporate proxy, the download may fail unless the proxy environment variables are configured. Step 1: Configure Proxy (If Applicable) Before running the setup script, configure the proxy environment variables. export http_proxy=http://[proxy-host]:[proxy-port] export https_proxy=http://[proxy-host]:[proxy-port] export HTTP_PROXY=$http_proxy export HTTPS_PROXY=$https_proxy # Optional export no_proxy=localhost,127.0.0.1,[internal-domains] export NO_PROXY=$no_proxy Note: In my environment, configuring https_proxy was sufficient for the Update Tool to download successfully. Step 2: Download the Update Tool Navigate to the API Manager installation directory bin (AM_HOME/bin) and execute: ./updat...