After certificates for
the CA, the server, and the client have been generated, and imported
into the appropriate certificate store, you can start a
SAS/SHARE server. Here is an example of how to
start a secured
SAS/SHARE
server:
%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 for Server Start-Up
Tasks
SAS Options, Statements,
and Arguments
|
|
|
|
|
Specifies the TCP/IP
access method
|
|
Specifies SSL as the
encryption algorithm
|
|
Specifies the name of
the issuer of the digital certificate that SSL should use
|
SSLCERTSERIAL=" 0a1dcfa3000000000015"
|
Specifies the serial
number of the digital certificate that SSL should use
|
|
|