After certificates for
the CA, the server, and the client have been generated, and a CA trust
list for the client has been created, you can start a
SAS/SHARE server.
Here is an example of
starting a secured
SAS/SHARE
server:
%let tcpsec=_secure_;
options netencryptalgorithm=ssl;
options sslpkcs12loc="/users/johndoe/certificates/server.p12;
options sslpkcs12pass="password";
proc server id=shrserv authenticate=opt;
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 SSL as the
encryption algorithm
|
|
Specifies the filepath
for the location of the server's private key
|
|
Specifies the password
to access server's private key
|
|
|
|
Allows trusted users
to access the server without authentication
|