SPD Server Parameter File Configurations for SAS Metadata Server Authentication

SPD Server 5.2 features several new options for performing user authentication through the SAS Metadata Server. For more detailed information about nonnative authentication strategies, see Configuring SPD Server for SAS Metadata Server Authentication.

[NO]METAAUTHENTIC

Specifies whether SPD Server should use the SAS Metadata Server to provide user authentication. The back-end authentication provider is whatever the SAS Metadata Server was configured for. NOMETAAUTHENTIC is the default setting.
Syntax
METAAUTHENTIC ;
Description
When in the default setting of NOMETAAUTHENTIC, an internal account (native to SPD Server) is used for authentication. When METAAUTHENTIC is specified, SAS Metadata Server will provide user authentication via the back-end authentication provider that it was configured to use.
Note: If you specify any META* option in your SPD Server server parameter file, then SPD Server assumes an authentication setting of METAAUTHENTIC.

METASERVER=

Specifies the name of the host that the SAS Metadata Server is running on.
Syntax
METASERVER=SAS-Metadata-Server-hostname
Description
Provides the name of the host that the SAS Metadata Server resides on. If SAS Metadata Server authentication is configured, but METASERVER= is not specified, then SPD Server assigns a default value of METASERVER=localhost. An option value of localhost indicates that the SAS Metadata Server is running on the same host as the SPD Server.

METAPORT=

Specifies the port number of the SAS Metadata Server.
Syntax
METAPORT=SAS-Metadata-Server-port-number
Description
Identifies the port number of the SAS Metadata Server. If SAS Metadata Server authentication is configured, but no METAPORT= value is specified, then SPD Server assigns a default value of METAPORT=8561.

METADOMAIN=

Specifies the domain where the back-end authenticator resides.
Syntax
METADOMAIN=domain-name
Description
The domain name, if needed, for the back-end authenticator used by the SAS Metadata Server. No domain will be used if this option is not specified.

Examples of SPD Server Authentication Options

The simplest way to use SAS Metadata Server authentication is to add METAAUTHENTIC to the server parameter file. The value for METASERVER= will default to localhost and the value for METAPORT= will default to 8561. localhost selects the host that SPD Server server runs on.
Both examples below will configure SPD Server to use SAS Metadata Server for authentication:
Example using default values for METASERVER= and METAPORT=
METAAUTHENTIC;
Example using option values for METASERVER= and METAPORT=
METASERVER=lax94d01;
METAPORT=8561;
Either of the options declared above implies METAAUTHENTIC to SPD Server.