BookmarkSubscribeRSS Feed
ajay143
Calcite | Level 5

Hi All,

 

I am getting the following error when try to submit the programm from local mechine to remote server ,can any one help me on that.

 

I used the follwingcode:

 


%let rem_id1=tdanal  ;
options comamid=TCP remote=rem_id1;
signon 'E:\SAS\9.4\connect\saslink\tcpwin.scr';


Getting this error:

 

NOTE: Remote signon to REM_ID1 commencing (SAS Release 9.04.01M4P110916).
ERROR: A communication subsystem partner link setup request failure has occurred.
ERROR: Cannot locate TCP host 'REM_ID1'.
ERROR: Remote signon to REM_ID1 canceled.

 

Thanks in Advance.

5 REPLIES 5
ajay143
Calcite | Level 5

Hi ,

Thank for your Answer.

 

This time i have entered with & only it resolved and given the following error,could you please help me in this.

 

 

submitted the follwing code:


options symbolgen mprint mlogic;
%let rem_id1=12.123.12.12;
options netencryptalgorithm=sasproprietary;
options comamid=TCP remote=&rem_id1;
signon 'E:\SAS\SASHome\SASFoundation\9.4\connect\saslink\tcpwin.scr';

 

getting the error:

 

 

NOTE: Remote signon to 12.123 commencing (SAS Release 9.04.01M4P110916).
ERROR: A communication subsystem partner link setup request failure has occurred.

 
ERROR: No route to host
ERROR: Remote signon to 12.123  canceled.

 

Thanks In Advance.

ajay143
Calcite | Level 5
it seems remote option only will take 7 characters only.
here can i use ip adress with remote= option ?
or i should use machine name only?..
NunoTGrunho
Fluorite | Level 6

Hi,

try this:

 

options symbolgen mprint mlogic;
%let remhost=12.123.12.12;
options netencryptalgorithm=sasproprietary;
options comamid=TCP remote=remhost;

filename myhost 'E:\SAS\SASHome\SASFoundation\9.4\connect\saslink\tcpwin.scr';
signon remhost;

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!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

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
  • 5 replies
  • 3147 views
  • 0 likes
  • 3 in conversation