From 603b54e3a1f8afec366a4cb6145ca49edfefe922 Mon Sep 17 00:00:00 2001 From: Mickael Savinaud Date: Thu, 30 Sep 2021 16:21:30 +0200 Subject: [PATCH] Add doc in FAQ about ssl cert --- Documentation/Cookbook/rst/FAQ.rst | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/Documentation/Cookbook/rst/FAQ.rst b/Documentation/Cookbook/rst/FAQ.rst index cadde7bae9..a7b683d0cf 100644 --- a/Documentation/Cookbook/rst/FAQ.rst +++ b/Documentation/Cookbook/rst/FAQ.rst @@ -81,3 +81,18 @@ be unique, the first library *SomeLib* loaded will be used by any other binary depending on it. Thus, the order of the imports has an effect. In some cases, symbol problems have been observed in libcrypto, and the solution was to import OTB Applications before importing Fiona. + +Problems using OTB and virtual filesystem +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +If you try to read raster located on virtual filesystem as s3 bucket with +the OTB standalone package you can encounter issue with SSL certififcates. +Indeed this package is build on CentOS and for example Ubuntu’s certs are in a +different location. You may need to use the CURL_CA_BUNDLE environment variable +to specify the location of SSL certs on your computer. + +On an Ubuntu system set the variable as shown below. + +.. code-block:: sh + + export CURL_CA_BUNDLE=/etc/ssl/certs/ca-certificates.crt -- GitLab