%let tcpsec=_secure_; options comamid=tcp netencryptalgorithm=ssl; options sslcertiss="Glenn's CA"; options sslcertserial="0a1dcfa3000000000015"; proc server id=shrserv; run;The following table lists the SAS option or statement that is used for each task to start a server.
SAS Options, Statements,
and Arguments
|
Server Start-Up Tasks
|
---|---|
TCPSEC= _SECURE_
|
Secures the server
|
COMAMID=TCP
|
Specifies the TCP/IP
access method
|
NETENCRALG=SSL
|
Specifies SSL as the encryption algorithm
|
SSLCERTISS="Glenn's
CA"
|
Specifies the name of the issuer of the digital certificate that TLS should use
|
SSLCERTSERIAL="0a1dcfa3000000000015"
|
Specifies the serial number of the digital certificate that TLS should use
|
PROC SERVERID=shrserv;
|
Starts the server
|
options comamid=tcp; %let machine=apex.server.com; libname a '.' server=machine.shrserv user=_prompt_;The following table lists the SAS options that are used for accessing a server from a client.
SAS Options and Arguments
|
Client Access Tasks
|
---|---|
COMAMID=TCP
|
Specifies the TCP/IP
access method
|
SERVER=machine.shrserv
|
Specifies the machine
and server to connect to
|
USER=_PROMPT_
|
Prompts for the user
ID and password to be used for authenticating the client to the server
|