You are installing Cortex XSOAR on an offline (air-gapped) RHEL Linux server. Which method should you use to install required Python dependencies for integrations without internet access?
Trap 1: Manually copy pip packages into the…
Manually injecting files into internal paths is unsupported and will be overwritten during container initialization.
Trap 2: Configure the server to tunnel through an unauthenticated proxy.
Air-gapped environments by definition have no route to external networks, rendering proxies ineffective.
Trap 3: Run 'demisto-sdk download-dependencies' from the CLI.
demisto-sdk is used for content development, not server-side offline dependency management.
- A
Manually copy pip packages into the /var/lib/demisto/python/site-packages directory.
Why wrong: Manually injecting files into internal paths is unsupported and will be overwritten during container initialization.
- B
Configure the server to tunnel through an unauthenticated proxy.
Why wrong: Air-gapped environments by definition have no route to external networks, rendering proxies ineffective.
- C
Run 'demisto-sdk download-dependencies' from the CLI.
Why wrong: demisto-sdk is used for content development, not server-side offline dependency management.
- D
Use the offline installation bundle containing pre-packaged Python dependencies and local wheels.
Air-gapped deployments rely on the offline installation package which includes bundled Python libraries and wheel files.