Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content
Announcements
Qlik Connect 2025! Join us in Orlando join us for 3 days of immersive learning: REGISTER TODAY

Deploying update and base site without proxy or heavy http server

No ratings
cancel
Showing results for 
Search instead for 
Did you mean: 
TalendSolutionExpert
Contributor II
Contributor II

Deploying update and base site without proxy or heavy http server

Last Update:

Nov 9, 2023 8:35:44 AM

Updated By:

TalendSolutionExpert

Created date:

Nov 9, 2023 8:35:44 AM

Scenario:

My studio can't access the internet, and I need access to p2 to install features or update to apply a patch.

Prerequisites:

  1. Call support to get the latest patch.
  2. I'll find the p2 file in the license email or in the TMC download part.

Solution 1:

The first solution consists of deploying the zip content on a directly reachable httpd server. For example, http_root/p2 and http_root/patch (http_root is usually /var/html/htdocs).

Once done, just update the update URLs: Window/Preferences/Talend/Update settings

You'll put:

  • Base URL: http://http_server:port/p2
  • Update URL: http://http_server:port/patch

Solution 2 when no http server is available:

The second solution is to create a small web server with Python modules "http.server" (python3). The first step is to unzip p2 and patch locally in a folder (I'll call this folder: FILE_PATH) and ensure Python is installed.

With PowerShell or a Linux shell, you can type this command:

powershell
python -m http.server port_number -d FILE_PATH

Port_number must be greater than 1024. This will be your mini webserver.

Just update the update URLs: Window/Preferences/Talend/Update settings

You'll put:

Contributors
Version history
Last update:
‎2023-11-09 08:35 AM
Updated by: