2 Installing Eloquence on the HP-UX platform
# eloqdb5.cfg # # @(#)$Revision: 1.6 1997/07/15 00:00 $ # The purpose of this file is to define the eloqdb5 properties. # The location depends on the operating system: # # HP-UX 9.x: /opt/eloquence6/etc/eloqdb5.cfg # HP-UX 10.x: /etc/opt/eloquence6/eloqdb5.cfg # # This file is read once at eloqdb5 startup. # # Format: # # The section names are not case sensitive. String values can be # enclosed in double quotes to protect leading or trailing spaces. # Everything after a hash (#) character is considered a comment. # Default values are provided commented out. ### Server configuration [Server] # Service The service name (as defined in /etc/services) # or the port number where the server should listen # for requests. The default value is eloqdb5. # # UseKeepAlive Numeric flag if the KEEP ALIVE socket option # should be used. Valid values are 1/0. # The default value is 1. # If this option is active, the server will check # after a system defined period of inactivity, if the # client is still alive. #Service = eloqdb5 #UseKeepAlive = 1 # panic This option defines what should happen if a fatal # error is encountered. # # The following options are valid: # exit Terminate the process. This is the default. # dump Terminate the process and create a core dump. # # This is a problem tracking option. Unless you know what # you need the coredump for you probably want to stay with # the default. #panic = exit # UID The name (or numeric id) of the system account to run # client processes as when started as root. # # GID The name (or numeric id) of the system group to run # client processes as when started as root. UID = eloq GID = eloq # LogFile This defines where log messages are written to. # This configuration value either specifies a path/file # or one of the keywords below: # # console - log messages are written to the console # syslog - log messages will be sent to the # syslog daemon # # The default value is "syslog". #LogFile = syslog # SysIdent When logging to the syslog daemon, you can define # a syslog identifier. Default is eloqdb5. # See syslogd(1M) for more information # # SysFacility When logging to the syslog daemon, you can define # a syslog facility (USER/DAEMON/LOCAL0..LOCAL7) # The default setting is "USER". # See syslogd(1M) for more information #SysIdent = eloqd #SysFacility = USER # LogFlags Each log message has an associated origin and # severity. # The log flags define, which messages will be logged. # The "*" origin matches all message origins, so it can # be used to setup a default which can be overriden # for a specific message origin (eg. "*1N0"): # Default LogFlags are "*0" # # The following origin are in use: # * = All origins # C = Configuration subsystem # N = Network transport # P = Protocol handling # # The following severities are in use: # L_ERROR = 0 - error messages # L_INFO = 1 - information # L_DEBUG = 2 - debug # L_VDEBUG = 3 - verbose debug # # When using syslog, the following priorities # are mapped: # L_ERROR = LOG_ERR # L_INFO = LOG_NOTICE # L_DEBUG = LOG_DEBUG # L_VDEBUG = LOG_DEBUG # # Enabling log messages with L_DEBUG or L_VDEBUG severity # may result in a huge number of log messages. # To enable only fatal messages, you would want to set the # LogFlags to "*0", to enable regular log messages you # would want to set the LogFlags to "*1" LogFlags = *0 ### Data base config [Config] # MaxDB Maximum number of data bases a single session server # can handle. The default value is 20 #MaxDB = 20