<?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>question Re: ambari server problem 3 in Support Questions</title>
    <link>https://community.cloudera.com/t5/Support-Questions/ambari-server-problem-3/m-p/268499#M206232</link>
    <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/68583"&gt;@Manoj690&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As we see the mentioned message&lt;STRONG&gt; "&lt;/STRONG&gt;&lt;SPAN&gt;&lt;STRONG&gt;require_secure_transport=ON"&lt;/STRONG&gt; in your exception&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;which indicates that you might have configured your MySQL to allow secure connections.&amp;nbsp; You can find that setting inside the &lt;STRONG&gt;"/etc/my.cnf"&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Option-1).&lt;/STRONG&gt; Hence ether you will need to disable that setting from mysql config and restart MySQL. If it is &lt;STRONG&gt;ON&lt;/STRONG&gt; means it is enabled.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;# grep 'require_secure_transport' /etc/my.cnf
require_secure_transport = OFF

# systemctl restart mysql.service&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;Option-2).&lt;/STRONG&gt; OR you will need to Get the MySQL service certificate and then make sure that you import the MySQL certificate inside the AmbariServer truststore OR insie the JDK cacert in which your AmbariServer is running.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Example:&lt;/STRONG&gt; Importing MySQL CA Certificate in AmbariServer's JDK Truststore :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;# /usr/jdk64/jdk1.8.0_112/bin/keytool -import -file /tmp/mysql_cert.pem -alias mysql_ambari -keystore /usr/jdk64/jdk1.8.0_112/jre/lib/security/cacerts&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;The restart AmbariServer.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;# ambari-server restart&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;.&lt;/P&gt;</description>
    <pubDate>Wed, 21 Aug 2019 08:57:06 GMT</pubDate>
    <dc:creator>jsensharma</dc:creator>
    <dc:date>2019-08-21T08:57:06Z</dc:date>
    <item>
      <title>ambari server problem 3</title>
      <link>https://community.cloudera.com/t5/Support-Questions/ambari-server-problem-3/m-p/268497#M206231</link>
      <description>&lt;P&gt;&amp;nbsp;Caused by: java.sql.SQLException: Connections using insecure transport are prohibited while --require_secure_transport=ON. at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:965) at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973)&lt;/P&gt;</description>
      <pubDate>Wed, 21 Aug 2019 10:45:08 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/ambari-server-problem-3/m-p/268497#M206231</guid>
      <dc:creator>Manoj690</dc:creator>
      <dc:date>2019-08-21T10:45:08Z</dc:date>
    </item>
    <item>
      <title>Re: ambari server problem 3</title>
      <link>https://community.cloudera.com/t5/Support-Questions/ambari-server-problem-3/m-p/268499#M206232</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/68583"&gt;@Manoj690&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As we see the mentioned message&lt;STRONG&gt; "&lt;/STRONG&gt;&lt;SPAN&gt;&lt;STRONG&gt;require_secure_transport=ON"&lt;/STRONG&gt; in your exception&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;which indicates that you might have configured your MySQL to allow secure connections.&amp;nbsp; You can find that setting inside the &lt;STRONG&gt;"/etc/my.cnf"&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Option-1).&lt;/STRONG&gt; Hence ether you will need to disable that setting from mysql config and restart MySQL. If it is &lt;STRONG&gt;ON&lt;/STRONG&gt; means it is enabled.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;# grep 'require_secure_transport' /etc/my.cnf
require_secure_transport = OFF

# systemctl restart mysql.service&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;Option-2).&lt;/STRONG&gt; OR you will need to Get the MySQL service certificate and then make sure that you import the MySQL certificate inside the AmbariServer truststore OR insie the JDK cacert in which your AmbariServer is running.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Example:&lt;/STRONG&gt; Importing MySQL CA Certificate in AmbariServer's JDK Truststore :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;# /usr/jdk64/jdk1.8.0_112/bin/keytool -import -file /tmp/mysql_cert.pem -alias mysql_ambari -keystore /usr/jdk64/jdk1.8.0_112/jre/lib/security/cacerts&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;The restart AmbariServer.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;# ambari-server restart&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Aug 2019 08:57:06 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/ambari-server-problem-3/m-p/268499#M206232</guid>
      <dc:creator>jsensharma</dc:creator>
      <dc:date>2019-08-21T08:57:06Z</dc:date>
    </item>
    <item>
      <title>Re: ambari server problem 3</title>
      <link>https://community.cloudera.com/t5/Support-Questions/ambari-server-problem-3/m-p/268500#M206233</link>
      <description>&lt;P&gt;if i run this command its asking &lt;STRONG&gt;keyword password:&amp;nbsp;&lt;/STRONG&gt; (what was the password)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/usr/jdk64/jdk1.8.0_112/bin/keytool -import -file /tmp/mysql_cert.pem -alias mysql_ambari -keystore /usr/jdk64/jdk1.8.0_112/jre/lib/security/cacerts&lt;BR /&gt;Enter keystore password:&lt;/P&gt;</description>
      <pubDate>Wed, 21 Aug 2019 09:04:22 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/ambari-server-problem-3/m-p/268500#M206233</guid>
      <dc:creator>Manoj690</dc:creator>
      <dc:date>2019-08-21T09:04:22Z</dc:date>
    </item>
    <item>
      <title>Re: ambari server problem 3</title>
      <link>https://community.cloudera.com/t5/Support-Questions/ambari-server-problem-3/m-p/268501#M206234</link>
      <description>&lt;P&gt;Password is "changeit" which is default cacert password.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Aug 2019 09:05:31 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/ambari-server-problem-3/m-p/268501#M206234</guid>
      <dc:creator>jsensharma</dc:creator>
      <dc:date>2019-08-21T09:05:31Z</dc:date>
    </item>
    <item>
      <title>Re: ambari server problem 3</title>
      <link>https://community.cloudera.com/t5/Support-Questions/ambari-server-problem-3/m-p/268502#M206235</link>
      <description>&lt;P&gt;Thanks a lot&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;finally ambari server started&lt;/P&gt;</description>
      <pubDate>Wed, 21 Aug 2019 09:06:45 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/ambari-server-problem-3/m-p/268502#M206235</guid>
      <dc:creator>Manoj690</dc:creator>
      <dc:date>2019-08-21T09:06:45Z</dc:date>
    </item>
  </channel>
</rss>

