How can I connect SAS Server in remoting Linux Server throught saspy using the method of IOM? #650
|
I got an error : We failed in getConnection SAS process has terminated unexpectedly. RC from wait was: XXXXXXXXXX |
Replies: 3 comments 1 reply
|
sascfg_personal.py 配置如下: SAS_config_names = ['myiom'] SASpy配置文件 - IOM连接配置myiom = { 连接如下: sas = saspy.SASsession(cfgname='myiom') |
|
Hi xiakexing716, In SAS the default ports are: For the IOM connection method, it is required that you use the Workspace Server port. In your sample code, it looks like you are giving it the MetadataServer port. Can you please check this? For reference there is more information about the IOM connection method here: https://sassoftware.github.io/saspy/configuration.html#iom Here is what is documented about the iomport: Thanks, |
|
Hi @xiakexing716, I just wanted to check back in and see if you were able to get this working? Thanks, |
Hi xiakexing716,
In SAS the default ports are:
8561 - Metadata Server
8591 - Workspace Server
For the IOM connection method, it is required that you use the Workspace Server port. In your sample code, it looks like you are giving it the MetadataServer port. Can you please check this?
For reference there is more information about the IOM connection method here: https://sassoftware.github.io/saspy/configuration.html#iom
Here is what is documented about the iomport:
(Required) The port that object spawner is listening on for workspace server connections (workspace server port - not object spawner port!).
Thanks,
Don