Chapter 2 Configuration Files Netscape Application Server: Process Automation Edition (PAE) uses several configuration files to define installation values, server configurations, clusters, and application versions. Much of what they do is behind the scenes, but you may need to know about them from time to time. This chapter describes what you need to understand about each and how you might need to modify them.
Netscape Application Server: Process Automation Edition (PAE) uses several configuration files to define installation values, server configurations, clusters, and application versions.
Overview
PAE Files and Folders
Error Messages and Logs
The Enterprise Server Files
The Process Builder Preferences File
obj.conf: Object configuration values for the Enterprise Server, including access control information. These lines are added to your obj.conf as part of the PAE installation:
NameTrans fn="assign-name" name="Admin Data Auth" from="/*Data.apm" NameTrans fn="assign-name" name="Admin IT Auth" from="/*IT.apm" NameTrans fn="assign-name" name="Basic Auth" from="/*.npm"
If you specified a particular PAE administrator during installation, that user is assigned to the Admin Data Auth and Admin IT Auth groups with the same access privileges.
dbswitch.conf: Contains an LDAP URL about the corporate directory that PAE uses to authenticate users.
The following is a sample LDAP URL:
ldap://xyz.mcom.com:389/ou=People, o=mcom.com
This URL is obtained from the user during installation.
generated.https-yourServerName.acl: Contains access control list (ACL) information about PAE.
The following lines are added as part of your PAE installation:
acl "Admin Data Auth";
authenticate (user,group) {
prompt = "Netscape Process Manager Administration Data Manager";
database = "CorporateDirectoryYOURDIR";
};
deny (all) (user = "anyone");
allow absolute (all)(user = "admin");
Note that the default administrative user is admin, but users can specify any administrative user at installation.
To add a cluster entry, use this LDAP URL format:
cluster=ldap://Bind DN:Password@yourConfigDirServer:port/clusterDN
To add an entry for a corporate user Directory, use this LDAP URL format:
corp_dir=ldap://corporateDirectoryServer:port/corpDirectoryBaseDN
Process Builder logs are located at: serverRoot/builder/support/log/error.html and warning.html.
Process Administrator logs are located in the serverRoot/bpm/admin/logs folder. They are info.html, error.html, and security.html.
PAE applications use several log files, with each Netscape Application Server in a cluster having its own set of log files. PAE administrators can view these application logs that are maintained for each application on a per-server basis:
information log (info.html): shows information about the application's operations.
error log (error.html): shows the errors that have occurred with the application.
security log (security.html): shows the security violations that have occurred with the application.
The application log files are located at serverRoot/bpm/applications/applicationName/logs.
Enterprise Server: serverRoot/https-yourEnterpriseServer/logs
Administration Server: serverRoot/admin-serv/logs
Directory Server: serverRoot/slapd-yourDirServer/logs