Categories
Software Categories exacqVision Server Windows exacqVision Server Linux exacqVision Server Windows x64 exacqVision Server Linux x64 Knowledge Support Support exacqVision Client exacqVision Server Categories Products

How to Enable ‘Check for Updates’ Behind Network Proxy

Exacq does not pull proxy settings from the LAN settings or Network Adapter settings. When ‘Check for Updates’ is selected it reaches out to Exacq.com to gather information on other versions of software, but if it is behind a network proxy it needs to know how to communicate with it. This requires creating an Environmental Variable in the operating system. See steps below for Windows, scroll further down for Linux.

Windows

  1. Click the Windows (Start) button.<br><br>
  2. Windows 10:
    Use the Search field to type ‘Environment Variable’, and click on the resulting option, titled ‘Edit the system environment variables‘.
    <br>
    Windows 7:
    Right-click on Computer and choose Properties.<br><br>
  3. Within the System Properties window that appears, open the Advanced tab.<br><br>
  4. Click the Environment Variables… button.
    <br><br>
  5. The bottom half of the Environment Variables window contains the System variables panel. Click on the New… button under this panel.
    <br><br>
  6. In the New System Variable dialog, enter ‘http_proxy‘ into the Variable name field. The Variable value field will be filled with the IP or domain address of your proxy server. The picture below uses ‘192.168.0.1’ as an example in this field. If you do not know the address of the proxy to use here, you will need to check with the site’s network administrator.
    <br><br>
  7. Click OK when finished, then click OK to close the Environment Variables window, and OK again to close the System Properties window.
    <br><br>

Linux

  1. Open a Terminal window by pressing CTRL+ALT+T.<br><br>
  2. At the prompt enter the command below, replace the ‘192.168.0.1’ example with the IP of your proxy server.
    export http_proxy=192.168.0.1<br><br>
  3. To make the new entry persistent, so it remains after future reboots of the server, you must add it to the environment configuration file.

    From the prompt in Terminal enter:
    sudo gedit /etc/environment<br><br>
  4. Add a new line. Replace the ‘192.168.0.1’ address in the example with the IP of your proxy.
    http_proxy=192.168.0.1<br><br>
  5. Save the file.

<br>