🔒 This topic is solved and locked.
Need further help from the community? Please
sign in and ask a new question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
- « Previous
-
- 1
- 2
- Next »