<?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: Sqoop connection to Kerberos authenticated RDBMS as part of sqoop-export in Support Questions</title>
    <link>https://community.cloudera.com/t5/Support-Questions/Sqoop-connection-to-Kerberos-authenticated-RDBMS-as-part-of/m-p/281844#M209613</link>
    <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/4054"&gt;@bgooley&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/20288"&gt;@Shelton&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, I am able to connect to SQL Developer/SQL Plus for the kerberos authenticated DB.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Steps followed:&lt;/P&gt;&lt;P&gt;1.&amp;nbsp;kinit -k -t &amp;lt;keytabfile&amp;gt; &amp;lt;user&amp;gt;@&amp;lt;Realm/domain&amp;gt;&lt;/P&gt;&lt;P&gt;2. A ticket is created by the above command. Point the credential file location in SQL Developer to this ticket file location.&lt;/P&gt;&lt;P&gt;3. Provide host,post and DB service name. Click on the checkbox where it mentions Kerberos authentication.&lt;/P&gt;&lt;P&gt;4. Voila, SQL Developer connects to the database (without passing username/password)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But, similar set of steps fails in Sqoop to connect to the db since there is no option in Sqoop to mention that the DB has to connected using kerberos authentication (There was a checkbox in sqldeveloper). Is there any way to do the same in Sqoop?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My sqoop command is as below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;sqoop export -Dmapred.job.queue.name=&amp;lt;processingqueue&amp;gt; --connect "jdbc:oracle:thin:@hostname:portnumber/DBNAME" --table &amp;lt;targettable&amp;gt; --hcatalog-table &amp;lt;tableinhive&amp;gt; --hcatalog-partition-keys &amp;lt;partitioncolumn&amp;gt; --hcatalog-partition-values &amp;lt;partitionvalue&amp;gt; --hcatalog-database &amp;lt;dbname&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The above command works fine when I provide a username and password for an on-premise database but for a database with kerberos authentication (where you are not supposed to provide any username/password, it fails)&lt;/P&gt;</description>
    <pubDate>Fri, 01 Nov 2019 11:35:34 GMT</pubDate>
    <dc:creator>RjsChw</dc:creator>
    <dc:date>2019-11-01T11:35:34Z</dc:date>
    <item>
      <title>Sqoop connection to Kerberos authenticated RDBMS as part of sqoop-export</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Sqoop-connection-to-Kerberos-authenticated-RDBMS-as-part-of/m-p/281718#M209540</link>
      <description>&lt;P&gt;While doing a sqoop-export to load data from HDFS to Oracle hosted on cloud, I face the below issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;ERROR manager.SqlManager: Error executing statement: java.sql.SQLException: ORA-01017: invalid username/password; logon denied&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;java.sql.SQLException: ORA-01017: invalid username/password; logon denied&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have done a kinit username@domainname already before initializing the sqoop command and kinit has generated a valid kerberos ticket as well. Even though I do this and run the command from the location where the kerberos user keytab file is located, it still gives me the above issue. As I can see in the sqoop.properties file, parameter org.apache.sqoop.security.authentication.type=KERBEROS is commented out. Is this the reason for the above issue? How can we resolve the above issue where we need sqoop to export data from HDFS to kerberos authenticated DB?&lt;/P&gt;</description>
      <pubDate>Thu, 31 Oct 2019 10:55:49 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Sqoop-connection-to-Kerberos-authenticated-RDBMS-as-part-of/m-p/281718#M209540</guid>
      <dc:creator>RjsChw</dc:creator>
      <dc:date>2019-10-31T10:55:49Z</dc:date>
    </item>
    <item>
      <title>Re: Sqoop connection to Kerberos authenticated RDBMS as part of sqoop-export</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Sqoop-connection-to-Kerberos-authenticated-RDBMS-as-part-of/m-p/281773#M209572</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/70750"&gt;@RjsChw&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am not a Sqoop expert, but the error you getting is not coming from Hadoop services; rather, the login to your Oracle Database is failing.&amp;nbsp; In this case, I believe you should review how you are supplying credentials to authenticate to the Oracle DB and verify they are correct.&lt;/P&gt;</description>
      <pubDate>Thu, 31 Oct 2019 16:49:27 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Sqoop-connection-to-Kerberos-authenticated-RDBMS-as-part-of/m-p/281773#M209572</guid>
      <dc:creator>bgooley</dc:creator>
      <dc:date>2019-10-31T16:49:27Z</dc:date>
    </item>
    <item>
      <title>Re: Sqoop connection to Kerberos authenticated RDBMS as part of sqoop-export</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Sqoop-connection-to-Kerberos-authenticated-RDBMS-as-part-of/m-p/281796#M209587</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/70750"&gt;@RjsChw&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The error you are encountering is Oracle related you should validate the username password against the oracle database. If you have an oracle client installed on your laptop do the below there are many variations. But let your DBA give you the username/password for the database you are trying to export.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Variant 1&lt;/STRONG&gt;&lt;BR /&gt;sqlplus /nolog&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;Connect user/password@dbname&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Variant 2&lt;/STRONG&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;sqlplus user@orcl&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Variant 3&lt;/STRONG&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;sqlplus user/password@hostname:port/sid&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;STRONG&gt;-----------&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;STRONG&gt;ERROR manager.SqlManager: Error executing statement: java.sql.SQLException: ORA-01017: invalid username/password; logon denied&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#000000"&gt;&lt;STRONG&gt;java.sql.SQLException: ORA-01017: invalid username/password; logon denied&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Having said that Sqoop on the command line will display your password in clear text, that's not secure so below is a way to encrypt your password so that your sqoop jobs are secured from prying eyes, to do that you will use the hadoop package to encrypt your oracle credential.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the below example I am creating a password for my fictitious&amp;nbsp;&amp;nbsp;&lt;STRONG&gt;testDB&lt;/STRONG&gt; and using the name in the alias to easily identify it from the 100's of db's. In the below example I am using MySQL database the alias doesn't matter ie oracle.testDB.alias or db2.testDB.alias, the most important is the password it should match the password of the user of the Oracle/MySQL/dbs user&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;Encrypting SQOOP password&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;Generating the&lt;STRONG&gt; jceks&lt;/STRONG&gt; file you MUST provide a path to your &lt;STRONG&gt;hdfs&lt;/STRONG&gt; home, create one before executing this command&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;$ hadoop credential create mysql.testDB.alias -provider jceks://hdfs/user/george/mysql.testDB.password.jceks&lt;/STRONG&gt;&lt;BR /&gt;Enter password: [&lt;FONT color="#FF6600"&gt;database_password&lt;/FONT&gt;]&lt;BR /&gt;Enter password again: [&lt;FONT color="#FF6600"&gt;database_password&lt;/FONT&gt;]&lt;BR /&gt;&lt;STRONG&gt;mysql.testDB.alias has been successfully created.&lt;/STRONG&gt;&lt;BR /&gt;org.apache.hadoop.security.alias.JavaKeyStoreProvider has been updated.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#000000"&gt;Validating the encyrpted password creation&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;The encrypted password jceks will be MUST be written to your hdfs home&lt;BR /&gt;&lt;STRONG&gt;$ hdfs dfs -ls /user/george&lt;/STRONG&gt;&lt;BR /&gt;Found 1 items&lt;BR /&gt;-rwx------ 3 george hdfs 503 2018-09-02 01:40 &lt;STRONG&gt;/user/george/mysql.testDB.password.jceks&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Running the sqoop with the jceks alias&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Assumption my mysql database test is running on host is pomme.cloudera.com port 3306&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;$ sqoop import -Dhadoop.security.credential.provider.path=jceks://hdfs/user/george/mysql.testDB.password.jceks --driver com.mysql.jdbc.Driver --connect jdbc:mysql://pomme.cloudera.com:3306/test --username george --password-alias mysql.testDB.alias --table "customer" --target-dir /user/george/test&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT color="#000000"&gt;Success output&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2" color="#FF6600"&gt;Warning: /usr/hdp/2.6.2.0-205/accumulo does not exist! Accumulo imports will fail.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2" color="#FF6600"&gt;Please set $ACCUMULO_HOME to the root of your Accumulo installation.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2" color="#FF6600"&gt;18/09/02 02:08:04 INFO sqoop.Sqoop: Running Sqoop version: 1.4.6.2.6.2.0-205&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2" color="#FF6600"&gt;18/09/02 02:08:06 WARN sqoop.ConnFactory: Parameter --driver is set to an explicit driver however appropriate connection manager is not being set (via --connection-manager). Sqoop is going to fall back to org.apache.sqoop.manager.GenericJdbcManager. Please specify explicitly which connection manager should be used next time.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2" color="#FF6600"&gt;18/09/02 02:08:06 INFO manager.SqlManager: Using default fetchSize of 1000&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2" color="#FF6600"&gt;18/09/02 02:08:06 INFO tool.CodeGenTool: Beginning code generation&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2" color="#FF6600"&gt;.......... some text removed here..............&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2" color="#FF6600"&gt;18/09/02 02:08:18 INFO mapreduce.Job: The url to track the job: &lt;A href="http://pomme.cloudera.com:8088/proxy/application_1535835049607_0002/" target="_blank" rel="noopener"&gt;http://pomme.cloudera.com:8088/proxy/application_1535835049607_0002/&lt;/A&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2" color="#FF6600"&gt;18/09/02 02:08:18 INFO mapreduce.Job: Running job: job_1535835049607_0002&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2" color="#FF6600"&gt;18/09/02 02:08:55 INFO mapreduce.Job: Job job_1535835049607_0002 running in uber mode : false&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2" color="#FF6600"&gt;Total megabyte-milliseconds taken by all map tasks=917431296&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2" color="#FF6600"&gt;Map-Reduce Framework&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2" color="#FF6600"&gt;Map input records=2170&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2" color="#FF6600"&gt;Map output records=2170&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2" color="#FF6600"&gt;Input split bytes=396&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2" color="#FF6600"&gt;Spilled Records=0&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2" color="#FF6600"&gt;Failed Shuffles=0&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2" color="#FF6600"&gt;Merged Map outputs=0&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2" color="#FF6600"&gt;GC time elapsed (ms)=944&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2" color="#FF6600"&gt;CPU time spent (ms)=11690&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2" color="#FF6600"&gt;Physical memory (bytes) snapshot=669270016&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2" color="#FF6600"&gt;Virtual memory (bytes) snapshot=18275794944&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2" color="#FF6600"&gt;Total committed heap usage (bytes)=331350016&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2" color="#FF6600"&gt;File Input Format Counters&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2" color="#FF6600"&gt;Bytes Read=0&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2" color="#FF6600"&gt;File Output Format Counters&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2" color="#FF6600"&gt;Bytes Written=243892&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2" color="#FF6600"&gt;18/09/02 02:11:48 INFO mapreduce.ImportJobBase: Transferred 238.1758 KB in 218.8164 seconds (1.0885 KB/sec)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2" color="#FF6600"&gt;18/09/02 02:11:48 INFO mapreduce.ImportJobBase: Retrieved 2170 records.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Sqoop import in hdfs&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Check the export was successful&lt;BR /&gt;&lt;STRONG&gt;$ hdfs dfs -ls /user/george/test&lt;/STRONG&gt;&lt;BR /&gt;Found 5 items&lt;BR /&gt;&lt;FONT size="2" color="#FF6600"&gt;-rw-r--r-- 3 george hdfs 0 2018-09-02 02:11 /user/george/test/_SUCCESS&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2" color="#FF6600"&gt;-rw-r--r-- 3 george hdfs 60298 2018-09-02 02:10 /user/george/test/part-m-00000&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2" color="#FF6600"&gt;-rw-r--r-- 3 george hdfs 60894 2018-09-02 02:10 /user/george/test/part-m-00001&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2" color="#FF6600"&gt;-rw-r--r-- 3 george hdfs 62050 2018-09-02 02:11 /user/george/test/part-m-00002&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2" color="#FF6600"&gt;-rw-r--r-- 3 george hdfs 60650 2018-09-02 02:11 /user/george/test/part-m-00003&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Check the values in he splits&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF6600"&gt;$ hdfs dfs -cat /user/george/test/part-m-00000&lt;/FONT&gt;&lt;BR /&gt;1,Julian Stuart,sagittis.felis@sedhendrerit.com,Suspendisse Tristique Neque Associates,9230 Metus. Av.,Pemberton,Mexico&lt;BR /&gt;2,Ferris Fulton,condimentum@morbitristique.co.uk,Nunc Ltd,256-788 At Avenue,Northampton,China&lt;BR /&gt;3,Byron Irwin,adipiscing.Mauris@DonecnibhQuisque.edu,Nascetur Ridiculus Foundation,4042 Non, St.,Gattatico,Lithuania&lt;BR /&gt;..........................some text removed ................&lt;BR /&gt;18,Peter Middleton,purus.Nullam.scelerisque@egetdictumplacerat.com,Erat In Consectetuer Associates,1618 Donec St.,Grand Island,Thailand&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Voila&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 31 Oct 2019 19:48:42 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Sqoop-connection-to-Kerberos-authenticated-RDBMS-as-part-of/m-p/281796#M209587</guid>
      <dc:creator>Shelton</dc:creator>
      <dc:date>2019-10-31T19:48:42Z</dc:date>
    </item>
    <item>
      <title>Re: Sqoop connection to Kerberos authenticated RDBMS as part of sqoop-export</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Sqoop-connection-to-Kerberos-authenticated-RDBMS-as-part-of/m-p/281844#M209613</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/4054"&gt;@bgooley&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/20288"&gt;@Shelton&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, I am able to connect to SQL Developer/SQL Plus for the kerberos authenticated DB.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Steps followed:&lt;/P&gt;&lt;P&gt;1.&amp;nbsp;kinit -k -t &amp;lt;keytabfile&amp;gt; &amp;lt;user&amp;gt;@&amp;lt;Realm/domain&amp;gt;&lt;/P&gt;&lt;P&gt;2. A ticket is created by the above command. Point the credential file location in SQL Developer to this ticket file location.&lt;/P&gt;&lt;P&gt;3. Provide host,post and DB service name. Click on the checkbox where it mentions Kerberos authentication.&lt;/P&gt;&lt;P&gt;4. Voila, SQL Developer connects to the database (without passing username/password)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But, similar set of steps fails in Sqoop to connect to the db since there is no option in Sqoop to mention that the DB has to connected using kerberos authentication (There was a checkbox in sqldeveloper). Is there any way to do the same in Sqoop?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My sqoop command is as below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;sqoop export -Dmapred.job.queue.name=&amp;lt;processingqueue&amp;gt; --connect "jdbc:oracle:thin:@hostname:portnumber/DBNAME" --table &amp;lt;targettable&amp;gt; --hcatalog-table &amp;lt;tableinhive&amp;gt; --hcatalog-partition-keys &amp;lt;partitioncolumn&amp;gt; --hcatalog-partition-values &amp;lt;partitionvalue&amp;gt; --hcatalog-database &amp;lt;dbname&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The above command works fine when I provide a username and password for an on-premise database but for a database with kerberos authentication (where you are not supposed to provide any username/password, it fails)&lt;/P&gt;</description>
      <pubDate>Fri, 01 Nov 2019 11:35:34 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Sqoop-connection-to-Kerberos-authenticated-RDBMS-as-part-of/m-p/281844#M209613</guid>
      <dc:creator>RjsChw</dc:creator>
      <dc:date>2019-11-01T11:35:34Z</dc:date>
    </item>
    <item>
      <title>Re: Sqoop connection to Kerberos authenticated RDBMS as part of sqoop-export</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Sqoop-connection-to-Kerberos-authenticated-RDBMS-as-part-of/m-p/281862#M209622</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/70750"&gt;@RjsChw&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ah, now I get what you are trying to do (auth to Oracle db with Kerberos).&lt;/P&gt;&lt;P&gt;I'm sad to say that is not currently a feature in Sqoop.&amp;nbsp;&lt;/P&gt;&lt;P&gt;The feature request has been entered upstream via &lt;A href="https://issues.apache.org/jira/browse/SQOOP-3446" target="_blank" rel="13245137 noopener"&gt;SQOOP-3446&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Nov 2019 16:01:27 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Sqoop-connection-to-Kerberos-authenticated-RDBMS-as-part-of/m-p/281862#M209622</guid>
      <dc:creator>bgooley</dc:creator>
      <dc:date>2019-11-01T16:01:27Z</dc:date>
    </item>
    <item>
      <title>Re: Sqoop connection to Kerberos authenticated RDBMS as part of sqoop-export</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Sqoop-connection-to-Kerberos-authenticated-RDBMS-as-part-of/m-p/281968#M209688</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/4054"&gt;@bgooley&lt;/a&gt;&amp;nbsp;Ah,alright! Will be willing to see the feature being rolled out soon. Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 04 Nov 2019 12:44:34 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Sqoop-connection-to-Kerberos-authenticated-RDBMS-as-part-of/m-p/281968#M209688</guid>
      <dc:creator>RjsChw</dc:creator>
      <dc:date>2019-11-04T12:44:34Z</dc:date>
    </item>
  </channel>
</rss>

