BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
sergie89
Quartz | Level 8

Hi @alexal,

 

I have tried to use command: "options set=GRIDRSHCOMMAND="/usr/bin/ssh -q -o StrictHostKeyChecking=no"; in my SAS code, but doesn't seem to have any effect.

 

But I can push data to lasr with the following code now:

 

options METASERVER="hostname"
		METAPORT=8561
		METAREPOSITORY="Foundation"
		METAUSER="lasradm"
		METAPASS="";

libname LASRLIB sasiola host="hostname" port=10031
		tag="VAPUBLIC" signer="https://hostname.com:443/SASLASRAuthorization"; run;

data LASRLIB.baseball;
	set sashelp.baseball;
run;

 

 I feel like there's something wrong with the SSH key's or with permissions on the server.

alexal
SAS Employee

@sergie89,


If you added META options, that explains why your program wasn't worked before. You weren't able to connect to the LASR Authorization Service. In any way, SSH keys are always required.

sergie89
Quartz | Level 8
@alexal,

It works fine now. Thank you.

suga badge.PNGThe SAS Users Group for Administrators (SUGA) is open to all SAS administrators and architects who install, update, manage or maintain a SAS deployment. 

Join SUGA 

CLI in SAS Viya

Learn how to install the SAS Viya CLI and a few commands you may find useful in this video by SAS’ Darrell Barton.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 17 replies
  • 2326 views
  • 4 likes
  • 4 in conversation