SAS Programming

DATA Step, Macro, Functions and more
BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
k1w1
Calcite | Level 5

I am getting the following error message when I try to sftp from SAS EG:

 

SAS Host key verification failed. Couldn't read packet: Connection reset by peer

 

This is when I execute the sftp command using the x command e.g.

x "sftp my_user@mytest.vvv.sss.xxxxxx.com.aa"; XCMD is enabled as I can issue other x commands successfully.

 

This is even though I am logged on in EG as the same user that has been set up with the public and private keys on the Unix server and my code is submitted to run on that server.

 

If I log on to the unix server directly with the same account id as in EG using Putty, and issue the same command, sftp my_user@mytest.vvv.sss.xxxxxx.com.aa it works, and connects successfully to the remote sftp server.

 

Any suggestions welcome.

1 ACCEPTED SOLUTION

Accepted Solutions
k1w1
Calcite | Level 5

ok the problem is solved. It turned out that because we are operating in a grid environment, the keys need to be verified on all 4 grid hosts and a known_hosts file created on each. Once this was done and a few underlying permission changed made by the unix admin guy the code worked like a dream and all was good in the world. Thanks to all those who tried to help with this tricky issue.

View solution in original post

3 REPLIES 3
Kurt_Bremser
Super User

Just a hunch: immediately before you try the sftp, do

x 'cd $HOME';

Also, retrieve all responses to the sftp command:

filename oscmd pipe 'sftp my_user@mytest.vvv.sss.xxxxxx.com.aa 2>&1';
data _null_;
infile oscmd;
input;
put _infile_;
run;
k1w1
Calcite | Level 5

ok the problem is solved. It turned out that because we are operating in a grid environment, the keys need to be verified on all 4 grid hosts and a known_hosts file created on each. Once this was done and a few underlying permission changed made by the unix admin guy the code worked like a dream and all was good in the world. Thanks to all those who tried to help with this tricky issue.

Kurt_Bremser
Super User

"Working in a grid" is always important information, as it often explains "intermittent" failures caused by different configurations on the individual nodes.

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 3372 views
  • 0 likes
  • 2 in conversation