SAS Safety Scalable Performance Data Server 4.5 Manual De Usuario

Descargar
Página de 271
should be able to diagnose the reason for the failure from this message. Some common
problems include:
1. Invalid specification of the LIBNAME engine selector in the LIBNAME
statement. The SPD Server engine name is sasspds and is misspelled in the following
LIBNAME statement.
1? libname foo sasspds 'test' server=sunspot.spdsname
   passwd='xxx';
ERROR: Module FOO not found in search paths.
ERROR: Error in the LIBNAME or FILENAME statement.
2. Invalid specification of the logical LIBNAME domain name in the LIBNAME
statement. The domain name 'test' is not defined on the SPD Server Name Server
sunspot.spdsname.
2? libname foo sasspds 'test' server=sunspot.spdsname
   passwd='xxx';
ERROR: ERROR: Libname path info not found in SPDS name server..
ERROR: Error in the LIBNAME or FILENAME statement.
3. No name server is running on the specified node name or no name server is
available at the specified port address. In this case, no Name Server is running on
the specified node stelling. This same message would be generated if the port address
is incorrect.
3? libname foo sasspds 'test' server=stelling.spdsname
   passwd='xxx';
ERROR: Unable to connect to SPDS name server.
ERROR: Connection refused.
ERROR: Error in the LIBNAME or FILENAME statement.
4. An invalid or unknown node name is specified in the LIBNAME statement. In this
case, node xxx is not accessible in the network.
4? libname foo sasspds 'test' server=xxx.spdsname
   passwd='xxx';
ERROR: Unable to connect to SPDS name server.
ERROR: xxx.
ERROR: Error in the LIBNAME or FILENAME statement.
5. Invalid SPD Server user password specified in the LIBNAME statement. In this
case, the SPD Server user ID is derived from the UNIX user ID running the SAS session.
The SPD Server password file has an entry for this SPD Server user ID, but the password
is not xxx.
8? libname foo sasspds 'test' server=sunspot.spdsname
   passwd='xxx';
ERROR: Error on server libname socket.
ERROR: SPD server has rejected login from user
sasetb.. ERROR: Error in the LIBNAME or FILENAME
statement.
6. Invalid SPD Server user ID specified in the LIBNAME statement. In this case, the
SPD Server user ID xxx does not exist in the SPD Server host's password file. The
resulting failure message is the same as for the invalid password case.
SAS LIBNAME Assignment Failed
55