Our Community is getting an upgrade! To get everything ready for the relaunch, we’ll be placing the site in read-only mode starting September 21st.
We really appreciate your understanding while we get things set up behind the scenes. Catch up on all the exciting details about the move here.
Need help or have questions? Drop us a line at [email protected]

Community Articles

Find and share helpful community-sourced technical articles.
Announcements
Share your experience with Cloudera on G2 and get a $25 Amazon Gift card.
Hi, I'm CLEO! Something exciting is coming to the Community. Stay Tuned!
Labels (1)
avatar
Guru

Using Sqoop (Sql from/to Hadoop), you can use a password file instead of a plaintext password, which is more secure :

<arg>--password-file</arg>  
<arg>hdfs://NAMENODE/teradata.password</arg> 

You may end with error like

3737 [main] ERROR org.apache.sqoop.teradata.TeradataSqoopExportHelper  - Exception running Teradata export job
com.teradata.connector.common.exception.ConnectorException: java.sql.SQLException: [Teradata Database] [TeraJDBC 15.00.00.20] [Error 8017] [SQLState 28000] The UserId, Password or Account is invalid. 

If you set your “Password” pass with vi you’ll end with a line feed control character, making the password invalid.

To find if there’s a LF ending the password file, use od (display file in octal format):

[root@localhost ~]# od -c teradata.password 
0000000    P   a   s   s   w   o   r   d  \n 
0000011

You’ll have to delete your newline control character using tr :

[root@localhost ~]# tr -d '\n' < teradata.password > teradata.password.new 
[root@localhost ~]# od -c teradata.password.new 
0000000    P   a   s   s   w   o   r   d 
0000010
2,588 Views
Comments
avatar
New Member

Nice post @Laurent Edel we can also use $ echo -n "password" > teredata.password

Version history
Last update:
‎05-12-2016 02:00 AM
Updated by:
Contributors