BookmarkSubscribeRSS Feed
tommy81
Obsidian | Level 7
Hi
I have tried connecting to a remote unix server.
Prompt comes in but waits for long ang gives the following error

%let server=DC3C89.QC.DELL.TX 8562;
options comamid=TCP remote=server;
filename rlink "C:\Program Files\SAS\SASFoundation\9.2\connect\saslink\tcpunix.scr";
run;
signon user=_prompt_ password=XXXXXXXX;
WARNING: USERID/PASSWORD option(s) not supported with script file. Any previous RLINK fileref
specification will be ignored.
NOTE: Remote signon to SERVER commencing (SAS Release 9.02.02M2P090109).
ERROR: A communication subsystem partner link setup request failure has occurred.
ERROR: TCP link establishment failed.
ERROR: Remote signon to SERVER canceled.
65 run;
66 rsubmit;
ERROR: A link must be established by executing the SIGNON command before you can communicate with
SERVER.
ERROR: Remote submit to SERVER canceled.
2 REPLIES 2
Florent
Quartz | Level 8
Hi Tommy,

You should first make sure there is a spawner running on the Unix server. This is probably why the TCP link establishment failed (see the ERROR in your log).

Also I don't really get why you are creating a filename if you prompt for the username when signing on (see the WARNING in your log).

Regards,
Florent
SASKiwi
PROC Star
If you are connecting to the SAS spawner on Unix the only statements you need are:

%let server=DC3C89.QC.DELL.TX 8562;
options comamid=TCP remote=server;
signon user=your_user password=XXXXXXXX;

As Florent says no RLINK filename is necessary. Also you can probably drop the COMAMID= as well as TCP is usually the default.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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