<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Dynatrace managed intaller fails SSL: CERTIFICATE_VERIFY_FAILED in Dynatrace Managed Q&amp;A</title>
    <link>https://community.dynatrace.com/t5/Dynatrace-Managed-Q-A/Dynatrace-Managed-installer-fails-SSL-CERTIFICATE-VERIFY-FAILED/m-p/110664#M1737</link>
    <description>&lt;P&gt;See my instructions below. If you are installing the first node - follow steps 1-3. Then try with the installer. Let me know how it goes.&lt;/P&gt;&lt;H1&gt;How to find the root cause of the issue?&lt;/H1&gt;&lt;P&gt;See installer log to inspect issues in connectivity to Mission Control service. Installer log can be found at &amp;lt;DYNATRACE_BINARIES_DIR&amp;gt;/log/installer/*-install-of-managed-installer.log (for instance: 20190927-091357-success-install-of-managed-installer.log). Here’s a typical issue occurrence:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;2019-09-27 07:18:58 UTC Testing connection tåo Dynatrace Mission Control https://mcsvc.dynatrace.com:443 ... failed, with error: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:581)&lt;/PRE&gt;&lt;H1&gt;Why installer cannot connect to Mission Control but the Server is running fine?&lt;/H1&gt;&lt;P&gt;Installer checks Mission Control connectivity to configure the cluster to use either opcsvc.ruxit.com domain or mcsvc.dynatrace.com domain for all the communication endpoints. Installer use core OS certificate repository to validate the chain of SSL certificates exposed by Mission Control. Server use it’s keystore to check the chain.&lt;/P&gt;&lt;P&gt;If a proxy server or a firewall service is used between the cluster that intercepts the traffic, the verification of the chain also includes that proxy/firewall certificates to guarantee secure connection.&lt;/P&gt;&lt;H1&gt;How to check if it works or not?&lt;/H1&gt;&lt;P&gt;The simplest test is to use `curl` command. Example:&lt;/P&gt;&lt;PRE&gt;$ curl -x http://proxyuser:proxypass@outbound-proxy.dynatracelabs.com:8080 -I https://mcsvc.dynatrace.com&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;H1&gt;How to solve it?&lt;/H1&gt;&lt;P&gt;In that situation it is required to update OS trusted root certificates. You need to prepare:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;SSH access to the cluster node’s host&lt;/LI&gt;&lt;LI&gt;root permissions&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Use the following steps to add Proxy/Firewall public certificate and chain to the system.&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Update OS trusted root certificates. Use hints below how to do it in a given Linux distribution:&lt;/LI&gt;&lt;/OL&gt;&lt;H2&gt;Linux (Ubuntu)&lt;/H2&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;STRONG&gt;Function&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;STRONG&gt;Method&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;Add&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;OL&gt;&lt;LI&gt;Copy your CA to &lt;CODE&gt;dir /usr/local/share/ca-certificates/&lt;/CODE&gt;&lt;/LI&gt;&lt;LI&gt;Use command: &lt;CODE&gt;sudo cp foo.crt /usr/local/share/ca-certificates/foo.crt&lt;/CODE&gt;&lt;/LI&gt;&lt;LI&gt;Update the CA store: &lt;CODE&gt;sudo update-ca-certificates&lt;/CODE&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;H2&gt;Linux (Red Hat / CentOs 6)&lt;/H2&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;STRONG&gt;Function&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;STRONG&gt;Method&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;Add&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;OL&gt;&lt;LI&gt;Install the ca-certificates package: &lt;CODE&gt;yum install ca-certificates&lt;/CODE&gt;&lt;/LI&gt;&lt;LI&gt;Enable the dynamic CA configuration feature: &lt;CODE&gt;update-ca-trust force-enable&lt;/CODE&gt;&lt;/LI&gt;&lt;LI&gt;Add it as a new file to /etc/pki/ca-trust/source/anchors/: &lt;CODE&gt;cp foo.crt /etc/pki/ca-trust/source/anchors/&lt;/CODE&gt;&lt;/LI&gt;&lt;LI&gt;Use command: &lt;CODE&gt;update-ca-trust&lt;/CODE&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;2. Set system variable to configure OS trusted root certificates path:&lt;BR /&gt;&lt;BR /&gt;export REQUESTS_CA_BUNDLE=&amp;lt;TRUSTED_CERT_REPO_DIR&amp;gt;&lt;BR /&gt;&lt;BR /&gt;for instance for Red Hat:&lt;BR /&gt;export REQUESTS_CA_BUNDLE=&lt;CODE&gt;/etc/pki/ca-trust/source/anchors/&lt;BR /&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;3. For root user add that variable to bash profile, e.g. :&lt;BR /&gt;&lt;BR /&gt;echo 'export REQUESTS_CA_BUNDLE=/etc/pki/ca-trust/source/anchors/' &amp;gt;&amp;gt; ~/.bash_profile&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;4. Run cluster node reconfiguration (note, it restarts all the services)&lt;BR /&gt;&lt;BR /&gt;&amp;lt;DYNATRACE_BINARIES_DIR&amp;gt;/installer/reconfigure.sh&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;5. Check install.log and server config if Mission Control endpoint was updated successfully. Server config can be checked at:&lt;/P&gt;&lt;P&gt;&amp;lt;DYNATRACE_BINARIES_DIR&amp;gt;/server/conf/config.properties&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;And should contain:&lt;BR /&gt; &lt;BR /&gt; #opc management url&lt;/PRE&gt;&lt;P&gt;opcUrl=https://mcsvc.dynatrace.com/&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;6. Repeat for all cluster nodes.&lt;/P&gt;</description>
    <pubDate>Wed, 25 Mar 2020 16:37:30 GMT</pubDate>
    <dc:creator>Radoslaw_Szulgo</dc:creator>
    <dc:date>2020-03-25T16:37:30Z</dc:date>
    <item>
      <title>Dynatrace Managed installer fails SSL: CERTIFICATE_VERIFY_FAILED</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-Managed-Q-A/Dynatrace-Managed-installer-fails-SSL-CERTIFICATE-VERIFY-FAILED/m-p/110663#M1736</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When I try to install Dynatrace Managed:&lt;/P&gt;
&lt;P data-unlink="true"&gt;dynatrace-managed-1.191.0.20200316-134212.sh --tmp-dir "/var/opt/dynatrace-tmp" \&lt;BR /&gt;--install \&lt;BR /&gt;--install-silent \&lt;BR /&gt;--system-user "dynatrace:dynatrace" \&lt;BR /&gt;--license "XXXXXXXXXX" \&lt;BR /&gt;--initial-environment "main" \&lt;BR /&gt;--initial-first-name "Max" \&lt;BR /&gt;--initial-last-name "Musermann" \&lt;BR /&gt;--initial-email "max.mustermann@example.com" \&lt;BR /&gt;--initial-pass "Demo123!" \&lt;BR /&gt;--binaries-dir "/opt/dynatrace-managed" \&lt;BR /&gt;--network-proxy "http://server-proxy.example.ch:8080/&amp;nbsp;" \&lt;BR /&gt;--datastore-dir "/var/opt/dynatrace-managed"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm getting the error;&lt;/P&gt;
&lt;P data-unlink="true"&gt;Network proxy used for this installation in silent mode: http://server-proxy.example.ch:8080&amp;nbsp;&lt;BR /&gt;Testing connection to Dynatrace Mission Control ... failed&lt;BR /&gt;&lt;BR /&gt;/var/log/dynatrace/install.log says:&lt;/P&gt;
&lt;P data-unlink="true"&gt;2020-03-25 13:41:34 UTC Network proxy used for this installation in silent mode: http://server-proxy.example.ch:8080&amp;nbsp;&lt;BR /&gt;2020-03-25 13:41:34 UTC Testing connection to: https://mcsvc-dev.dynatracelabs.com:443&amp;nbsp;, via proxy: http://server-proxy.example.ch:8080&amp;nbsp; ...&lt;BR /&gt;2020-03-25 13:41:35 UTC Testing connection ... failed, with error: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:581)&lt;BR /&gt;2020-03-25 13:41:35 UTC Testing connection to: https://opcsvc-dev.ruxitlabs.com:443&amp;nbsp;, via proxy: http://server-proxy.example.ch:8080&amp;nbsp; ...&lt;BR /&gt;2020-03-25 13:41:36 UTC Testing connection ... failed, with error: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:581)&lt;BR /&gt;2020-03-25 13:41:36 UTC Cannot connect to Dynatrace Mission Control via network proxy http://server-proxy.example.ch:8080&amp;nbsp;&lt;BR /&gt;2020-03-25 13:41:36 UTC Checking connection to Mission Control .. failed. Please check network and security settings&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The proxy intercepts the SSL Traffic (MITM) using a certificate which is signed by a internal CA.&lt;/P&gt;
&lt;P&gt;Can you help?&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 18 Mar 2025 10:34:03 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-Managed-Q-A/Dynatrace-Managed-installer-fails-SSL-CERTIFICATE-VERIFY-FAILED/m-p/110663#M1736</guid>
      <dc:creator>mirzet_kadic</dc:creator>
      <dc:date>2025-03-18T10:34:03Z</dc:date>
    </item>
    <item>
      <title>Re: Dynatrace managed intaller fails SSL: CERTIFICATE_VERIFY_FAILED</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-Managed-Q-A/Dynatrace-Managed-installer-fails-SSL-CERTIFICATE-VERIFY-FAILED/m-p/110664#M1737</link>
      <description>&lt;P&gt;See my instructions below. If you are installing the first node - follow steps 1-3. Then try with the installer. Let me know how it goes.&lt;/P&gt;&lt;H1&gt;How to find the root cause of the issue?&lt;/H1&gt;&lt;P&gt;See installer log to inspect issues in connectivity to Mission Control service. Installer log can be found at &amp;lt;DYNATRACE_BINARIES_DIR&amp;gt;/log/installer/*-install-of-managed-installer.log (for instance: 20190927-091357-success-install-of-managed-installer.log). Here’s a typical issue occurrence:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;2019-09-27 07:18:58 UTC Testing connection tåo Dynatrace Mission Control https://mcsvc.dynatrace.com:443 ... failed, with error: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:581)&lt;/PRE&gt;&lt;H1&gt;Why installer cannot connect to Mission Control but the Server is running fine?&lt;/H1&gt;&lt;P&gt;Installer checks Mission Control connectivity to configure the cluster to use either opcsvc.ruxit.com domain or mcsvc.dynatrace.com domain for all the communication endpoints. Installer use core OS certificate repository to validate the chain of SSL certificates exposed by Mission Control. Server use it’s keystore to check the chain.&lt;/P&gt;&lt;P&gt;If a proxy server or a firewall service is used between the cluster that intercepts the traffic, the verification of the chain also includes that proxy/firewall certificates to guarantee secure connection.&lt;/P&gt;&lt;H1&gt;How to check if it works or not?&lt;/H1&gt;&lt;P&gt;The simplest test is to use `curl` command. Example:&lt;/P&gt;&lt;PRE&gt;$ curl -x http://proxyuser:proxypass@outbound-proxy.dynatracelabs.com:8080 -I https://mcsvc.dynatrace.com&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;H1&gt;How to solve it?&lt;/H1&gt;&lt;P&gt;In that situation it is required to update OS trusted root certificates. You need to prepare:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;SSH access to the cluster node’s host&lt;/LI&gt;&lt;LI&gt;root permissions&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Use the following steps to add Proxy/Firewall public certificate and chain to the system.&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Update OS trusted root certificates. Use hints below how to do it in a given Linux distribution:&lt;/LI&gt;&lt;/OL&gt;&lt;H2&gt;Linux (Ubuntu)&lt;/H2&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;STRONG&gt;Function&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;STRONG&gt;Method&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;Add&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;OL&gt;&lt;LI&gt;Copy your CA to &lt;CODE&gt;dir /usr/local/share/ca-certificates/&lt;/CODE&gt;&lt;/LI&gt;&lt;LI&gt;Use command: &lt;CODE&gt;sudo cp foo.crt /usr/local/share/ca-certificates/foo.crt&lt;/CODE&gt;&lt;/LI&gt;&lt;LI&gt;Update the CA store: &lt;CODE&gt;sudo update-ca-certificates&lt;/CODE&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;H2&gt;Linux (Red Hat / CentOs 6)&lt;/H2&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;STRONG&gt;Function&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;STRONG&gt;Method&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;Add&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;OL&gt;&lt;LI&gt;Install the ca-certificates package: &lt;CODE&gt;yum install ca-certificates&lt;/CODE&gt;&lt;/LI&gt;&lt;LI&gt;Enable the dynamic CA configuration feature: &lt;CODE&gt;update-ca-trust force-enable&lt;/CODE&gt;&lt;/LI&gt;&lt;LI&gt;Add it as a new file to /etc/pki/ca-trust/source/anchors/: &lt;CODE&gt;cp foo.crt /etc/pki/ca-trust/source/anchors/&lt;/CODE&gt;&lt;/LI&gt;&lt;LI&gt;Use command: &lt;CODE&gt;update-ca-trust&lt;/CODE&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;2. Set system variable to configure OS trusted root certificates path:&lt;BR /&gt;&lt;BR /&gt;export REQUESTS_CA_BUNDLE=&amp;lt;TRUSTED_CERT_REPO_DIR&amp;gt;&lt;BR /&gt;&lt;BR /&gt;for instance for Red Hat:&lt;BR /&gt;export REQUESTS_CA_BUNDLE=&lt;CODE&gt;/etc/pki/ca-trust/source/anchors/&lt;BR /&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;3. For root user add that variable to bash profile, e.g. :&lt;BR /&gt;&lt;BR /&gt;echo 'export REQUESTS_CA_BUNDLE=/etc/pki/ca-trust/source/anchors/' &amp;gt;&amp;gt; ~/.bash_profile&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;4. Run cluster node reconfiguration (note, it restarts all the services)&lt;BR /&gt;&lt;BR /&gt;&amp;lt;DYNATRACE_BINARIES_DIR&amp;gt;/installer/reconfigure.sh&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;5. Check install.log and server config if Mission Control endpoint was updated successfully. Server config can be checked at:&lt;/P&gt;&lt;P&gt;&amp;lt;DYNATRACE_BINARIES_DIR&amp;gt;/server/conf/config.properties&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;And should contain:&lt;BR /&gt; &lt;BR /&gt; #opc management url&lt;/PRE&gt;&lt;P&gt;opcUrl=https://mcsvc.dynatrace.com/&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;6. Repeat for all cluster nodes.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Mar 2020 16:37:30 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-Managed-Q-A/Dynatrace-Managed-installer-fails-SSL-CERTIFICATE-VERIFY-FAILED/m-p/110664#M1737</guid>
      <dc:creator>Radoslaw_Szulgo</dc:creator>
      <dc:date>2020-03-25T16:37:30Z</dc:date>
    </item>
    <item>
      <title>Re: Dynatrace managed intaller fails SSL: CERTIFICATE_VERIFY_FAILED</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-Managed-Q-A/Dynatrace-Managed-installer-fails-SSL-CERTIFICATE-VERIFY-FAILED/m-p/110665#M1738</link>
      <description>&lt;P&gt;And that also might be needed to ensure later on Server has the connection as well:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://docs.dynatrace.com/managed/shortlink/managed-server-truststore" target="_self"&gt;Add an SSL certificate to Dynatrace Managed cluster TrustStore&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Mar 2025 10:34:51 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-Managed-Q-A/Dynatrace-Managed-installer-fails-SSL-CERTIFICATE-VERIFY-FAILED/m-p/110665#M1738</guid>
      <dc:creator>Radoslaw_Szulgo</dc:creator>
      <dc:date>2025-03-18T10:34:51Z</dc:date>
    </item>
    <item>
      <title>Re: Dynatrace managed intaller fails SSL: CERTIFICATE_VERIFY_FAILED</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-Managed-Q-A/Dynatrace-Managed-installer-fails-SSL-CERTIFICATE-VERIFY-FAILED/m-p/110666#M1739</link>
      <description>&lt;P&gt;Thank you &lt;A rel="user" href="https://answers.dynatrace.com/users/5499/view.html" nodeid="5499"&gt;@Radoslaw S.&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;The hint with export REQUESTS_CA_BUNDLE solved the ssl problem but now i'm getting a new error:&lt;/P&gt;&lt;P&gt;2020-03-26 08:58:27 UTC Checking connection to Mission Control ..&lt;/P&gt;&lt;P&gt;2020-03-26 08:58:27 UTC Network proxy used for this installation in silent mode: http://server-proxy.example.ch:8080&lt;/P&gt;&lt;P&gt;2020-03-26 08:58:27 UTC Testing connection to: https://mcsvc-dev.dynatracelabs.com:443, via proxy: http://server-proxy.example.ch:8080 ...&lt;/P&gt;&lt;P&gt;2020-03-26 08:58:27 UTC Testing connection ... failed, with error: [Errno 21] Is a directory&lt;/P&gt;&lt;P&gt;2020-03-26 08:58:27 UTC Testing connection to: https://opcsvc-dev.ruxitlabs.com:443, via proxy: http://server-proxy.example.ch:8080 ...&lt;/P&gt;&lt;P&gt;2020-03-26 08:58:27 UTC Testing connection ... failed, with error: [Errno 21] Is a directory&lt;/P&gt;&lt;P&gt;2020-03-26 08:58:27 UTC Cannot connect to Dynatrace Mission Control via network proxy http://server-proxy.example.ch:8080&lt;/P&gt;&lt;P&gt;2020-03-26 08:58:27 UTC Checking connection to Mission Control .. failed. Please check network and security settings&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;the curl test is sucessfull:&lt;/P&gt;&lt;P&gt;[root@dyndemo dynatrace-managed-installer]# curl -x http://server-proxy.example.ch:8080 -I https://mcsvc.dynatrace.com&lt;/P&gt;&lt;P&gt;HTTP/1.1 200 Connection established&lt;/P&gt;&lt;P&gt;Proxy-Agent: Fortinet-Proxy/1.0&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;HTTP/1.1 200 OK&lt;/P&gt;&lt;P&gt;Server: nginx&lt;/P&gt;&lt;P&gt;Date: Thu, 26 Mar 2020 09:09:35 GMT&lt;/P&gt;&lt;P&gt;Content-Type: text/html; charset=utf-8&lt;/P&gt;&lt;P&gt;Content-Length: 78&lt;/P&gt;&lt;P&gt;Last-Modified: Mon, 23 Mar 2020 11:23:00 GMT&lt;/P&gt;&lt;P&gt;Connection: keep-alive&lt;/P&gt;&lt;P&gt;ETag: "5e789c14-4e"&lt;/P&gt;&lt;P&gt;Keep-Alive: timeout=55, max=16384&lt;/P&gt;&lt;P&gt;Accept-Ranges: bytes&lt;/P&gt;</description>
      <pubDate>Thu, 26 Mar 2020 09:14:51 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-Managed-Q-A/Dynatrace-Managed-installer-fails-SSL-CERTIFICATE-VERIFY-FAILED/m-p/110666#M1739</guid>
      <dc:creator>mirzet_kadic</dc:creator>
      <dc:date>2020-03-26T09:14:51Z</dc:date>
    </item>
    <item>
      <title>Re: Dynatrace managed intaller fails SSL: CERTIFICATE_VERIFY_FAILED</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-Managed-Q-A/Dynatrace-Managed-installer-fails-SSL-CERTIFICATE-VERIFY-FAILED/m-p/110667#M1740</link>
      <description>&lt;P&gt;my bad... REQUESTS_CA_BUNDLE should be set to the cert file instead of the directory. I'll update the procedure in my comment as well.&lt;/P&gt;&lt;P&gt;Let me know if that helped!&lt;/P&gt;</description>
      <pubDate>Thu, 26 Mar 2020 10:10:35 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-Managed-Q-A/Dynatrace-Managed-installer-fails-SSL-CERTIFICATE-VERIFY-FAILED/m-p/110667#M1740</guid>
      <dc:creator>Radoslaw_Szulgo</dc:creator>
      <dc:date>2020-03-26T10:10:35Z</dc:date>
    </item>
    <item>
      <title>Re: Dynatrace managed intaller fails SSL: CERTIFICATE_VERIFY_FAILED</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-Managed-Q-A/Dynatrace-Managed-installer-fails-SSL-CERTIFICATE-VERIFY-FAILED/m-p/110668#M1741</link>
      <description>&lt;P&gt;Tank you &lt;A href="https://answers.dynatrace.com/users/5499/view.html" rel="user" target="_blank"&gt;@Radoslaw S.&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;That solved the problem but the next one popped up:&lt;/P&gt;
&lt;P&gt;2020-03-26 13:12:48 UTC REST GET ... url: &lt;A href="https://mcsvc-dev.dynatracelabs.com:443/rest/public/v2.0/installation" target="_blank"&gt;https://mcsvc-dev.dynatracelabs.com:443/rest/public/v2.0/installation&lt;/A&gt;, user: installer ...&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;2020-03-26 13:12:49 UTC REST GET ... failed, with error 3 - invalid user name or password: {"code":401,"message":"It appears that you don't have permission to visit the page."}&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;2020-03-26 13:12:49 UTC Failed to get installation info from Mission Control - it can be caused by incorrect network proxy settings or by invalid license key&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Installation failed, with status: system verified, connected to Mission Control after 1 minute 50 seconds.&lt;/P&gt;
&lt;P&gt;Exit code: 3&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Errors:&lt;/P&gt;
&lt;P&gt;Failed to get installation info from Mission Control - it can be caused by incorrect network proxy settings or by invalid license key&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2020-03-26 13:12:49 UTC Exit code is 3&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;===== End of installation, started at 2020-03-26 14:10:58, lasting 1m 50s =====&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;with curl I don't have any issues:&lt;/P&gt;
&lt;P data-unlink="true"&gt;curl -x https://server-proxy.xaas.swissic.ch:8080 -I https://mcsvc-dev.dynatracelabs.com&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;the license is valid until Nov. 25, 2021&lt;/P&gt;</description>
      <pubDate>Tue, 18 Mar 2025 10:35:13 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-Managed-Q-A/Dynatrace-Managed-installer-fails-SSL-CERTIFICATE-VERIFY-FAILED/m-p/110668#M1741</guid>
      <dc:creator>mirzet_kadic</dc:creator>
      <dc:date>2025-03-18T10:35:13Z</dc:date>
    </item>
    <item>
      <title>Re: Dynatrace managed intaller fails SSL: CERTIFICATE_VERIFY_FAILED</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-Managed-Q-A/Dynatrace-Managed-installer-fails-SSL-CERTIFICATE-VERIFY-FAILED/m-p/110669#M1742</link>
      <description>&lt;P&gt;Installer was downloaded incorrectly. Additionally, license is already in use. &lt;/P&gt;</description>
      <pubDate>Thu, 26 Mar 2020 15:30:26 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-Managed-Q-A/Dynatrace-Managed-installer-fails-SSL-CERTIFICATE-VERIFY-FAILED/m-p/110669#M1742</guid>
      <dc:creator>Radoslaw_Szulgo</dc:creator>
      <dc:date>2020-03-26T15:30:26Z</dc:date>
    </item>
    <item>
      <title>Re: Dynatrace managed intaller fails SSL: CERTIFICATE_VERIFY_FAILED</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-Managed-Q-A/Dynatrace-Managed-installer-fails-SSL-CERTIFICATE-VERIFY-FAILED/m-p/110670#M1743</link>
      <description>&lt;P&gt;Thank you very much &lt;A rel="user" href="https://answers.dynatrace.com/users/5499/view.html" nodeid="5499"&gt;@Radoslaw S.&lt;/A&gt;&lt;/P&gt;&lt;P&gt;This issue is solved&lt;/P&gt;</description>
      <pubDate>Thu, 26 Mar 2020 15:41:47 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-Managed-Q-A/Dynatrace-Managed-installer-fails-SSL-CERTIFICATE-VERIFY-FAILED/m-p/110670#M1743</guid>
      <dc:creator>mirzet_kadic</dc:creator>
      <dc:date>2020-03-26T15:41:47Z</dc:date>
    </item>
    <item>
      <title>Re: Dynatrace managed intaller fails SSL: CERTIFICATE_VERIFY_FAILED</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-Managed-Q-A/Dynatrace-Managed-installer-fails-SSL-CERTIFICATE-VERIFY-FAILED/m-p/171377#M1744</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/24024"&gt;@mirzet_kadic&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How the issue has been solved, is it by download installer again or something else.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Abdelmohsen&lt;/P&gt;</description>
      <pubDate>Sun, 29 Aug 2021 12:16:24 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-Managed-Q-A/Dynatrace-Managed-installer-fails-SSL-CERTIFICATE-VERIFY-FAILED/m-p/171377#M1744</guid>
      <dc:creator>AbdelMoh_Salouk</dc:creator>
      <dc:date>2021-08-29T12:16:24Z</dc:date>
    </item>
  </channel>
</rss>

