Red Hat Training

A Red Hat training course is available for Red Hat JBoss Operations Network

Chapter 2. Core Managed Resources

There are certain server types that are supported by default in JBoss Operations Network, both for JBoss and non-JBoss resource types.

2.1. Apache - HTTP Server

Overview

Table 2.1. Overview

Description:an Apache HTTP Server instance
Singleton: no
Plugin:Apache

Child Resource Types

Autodiscovery Process Scans

Table 2.2. Metrics

NameQuery
HttpdOnWindowsprocess|basename|match=(?i)httpd.exe,process|basename|match|parent=(?i)httpd.exe
ApacheOnWindowsprocess|basename|match=(?i)Apache.exe,process|basename|match|parent=(?i)Apache.exe
HttpdOnUnixprocess|basename|match=httpd.*,process|basename|nomatch|parent=httpd.*
Apache2OnUnixprocess|basename|match=apache2,process|basename|nomatch|parent=apache2

Connection Properties

Table 2.3. 

NameDescriptionRequiredInternal Name
Enable augeas supportEnable augeas support yes augeasEnabled
Augeas Module Namethe name of the Augeas module/lens to use for loading and updating this resource's configuration yes augeasModuleName
Httpd config fileLocation of the Apache main configuration file. yes configurationFilesInclusionPatterns
Virtual Hosts Configuration PlacementHow should the new virtual host definitions be put in the configuration yes vhostCreationPolicy
Path To Contain Virtual Hosts FilesIf the new virtual hosts should be created in standalone files, this mask determines where to create those files. The '*' in the path is replaced by the name of the virtual host. If the path is relative, it is considered relative to server root. yes vhostFilesMask
Error Log File PathThe absolute path to the error log file - if the path is not absolute, it will be resolved relative to the server root directory; if unset, default will be 'logs/error_log' on UNIX or 'logs\error.log' on Windows. no errorLogFilePath
Error Log Events EnabledA flag indicating whether or not generation of Events for new error log entries is enabled. yes errorLogEventsEnabled
Error Log Minimum SeverityThe minimum severity of error log entry Events that should be collected. If not specified, there is no minimum severity (i.e. all events will be collected). no errorLogMinimumSeverity
Error Log Includes PatternA regular expression against which an error log entry's detail is matched to determine if an Event should be fired for that entry. If not specified, no filtering of log entries will be done based on their detail. no errorLogIncludesPattern
Custom Module NamesApache can use 2 values to identify a module. Either its module name that is used in the LoadModule directive or its source file that can be used in the IfModule directive (as of Apache 2.1 the IfModule directive can but doesn't have to use the module name, too). The plugin contains the mappings of the module names to module files for all the standard apache modules mentioned on the http://httpd.apache.org/docs/current/mod/ plus the SNMP module and mod_jk. If you use any non-standard modules and use their source file in the IfModule directives, you have to add the module-name-to-module-file mapping to this list so that the plugin can determine the correct runtime configuration of the apache instance. yes customModuleNames
Server Rootthe absolute path of the Apache server root directory yes serverRoot
Executable Paththe path to the Apache executable - if the path is not absolute, it will be resolved relative to the server root directory; if unset, default value is 'bin/httpd' on UNIX or 'bin\Apache.exe' on Windows no executablePath
Control Script Paththe path to the Apache control script - if the path is not absolute, it will be resolved relative to the server root directory; if unset, default will be 'bin/apachectl' on UNIX or the Apache executable on Windows no controlScriptPath
Config Filethe path to the httpd.conf file - if the path is not absolute, it will be resolved relative to the server root directory; if unset, default will be 'conf/httpd.conf' on UNIX yes configFile
URLThe http or https URL that will be used to check availability for this Apache server; if not set, availability will be determined based on whether plugin can connect to the Apache server's SNMP agent. Note that SSL certificate validation is disabled during availability checks if this is an HTTPS URL. no url
SNMP Agent Hostthe host name or IP address of the Apache SNMP agent (typically '127.0.0.1') no snmpAgentHost
SNMP Agent Portthe UDP port of the Apache SNMP agent (typically '1610') no snmpAgentPort
SNMP Agent Communitythe SNMP community of the Apache SNMP agent (typically 'public') no snmpAgentCommunity
SNMP Request Timeoutthe timeout, in milliseconds, for requests to the Apache SNMP agent; defaults to 2000 no snmpRequestTimeout
SNMP Request Retriesthe number of times a request that has timed out should be retried; defaults to 1 no snmpRequestRetries
Restart After Configuration UpdateIf set to true, each configuration update of the server or any underlying virtual host or directory is followed by the restart of the Apache instance so that the configuration changes are applied immediately. If set to false, you have to manually restart the server (for example using the restart operation in the operations tab) once all the configuration updates are finished. yes restartAfterConfigurationUpdate
BMX HandlerIf set to a valid URL to mod_bmx handler allow to use mod_bmx instead of mod_snmp. no bmxUrl

Note

You must use the internal name to reference Configuration Properties in Dynamic Group Definition expressions.

Metrics

Table 2.4. Metrics

NameTypeDescriptionInternal Name
Number of Concurrent ConnectionsmeasurementNumber of Concurrent ConnectionsapplInboundAssociations
Server Builttraitthe date and time this Apache server's binary was compiledserverBuilt
Start Timetraitthe date and time this Apache server was last startedwwwServiceStartTime
Time to ping the server for availabilitymeasurementTime it took to ping the server for availability over http; this includes DNS lookup time.rhq_avail_ping_time

Note

You must use the internal name to reference Traits in Dynamic Group Definition expressions.

Configuration Properties

Table 2.5. 

NameDescriptionRequiredInternal Name
Listen  yes Listen
Name Virtual HostA required directive if you want to configure name-based virtual hosts. Although the value can be hostname it is recommended that you always use an IP address. IPv6 addresses must be enclosed in square brackets. To receive requests on all interfaces, you can set the value to *. Note that the IP address of a name-based virtual host must exactly match the value of this property. The address may be optionally followed by the port specification to further limit the directive effect. no NameVirtualHost

Note

You must use the internal name to reference Configuration Properties in Dynamic Group Definition expressions.

Operations

Table 2.6. Metrics

NameDescription
StartStarts this Apache server, or returns an error if it is already running. The control script used is specified in the Connection Properties.
StopStops this Apache server, or returns an error if it is not running. The control script used is specified in the Connection Properties.
RestartRestarts the Apache server by sending its process a SIGHUP. If the server is not running, it is started. This command automatically checks the server's configuration files via configtest before initiating the restart to make sure Apache doesn't die. The control script used is specified in the Connection Properties. Only supported on UNIX platforms.
Start with SSL SupportStarts this Apache server with support for SSL. The control script used is specified in the Connection Properties. Only supported on Apache 1.3.
Restart GracefullyGracefully restarts the Apache server by sending it a SIGUSR1. If the daemon is not running, it is started. This differs from a normal restart in that currently open connections are not aborted. A side effect is that old log files will not be closed immediately. This means that if used in a log rotation script, a substantial delay may be necessary to ensure that the old log files are closed before processing them. This command automatically checks the configuration files via configtest before initiating the restart to make sure Apache doesn't die. The control script used is specified in the Connection Properties.
Check Configuration File SyntaxRun a configuration file syntax test. It parses the configuration files and either reports Syntax Ok or detailed information about the particular syntax error. The control script used is specified in the Connection Properties. Only supported on UNIX platforms.
Install mod_jk configurationTries to install a mod_jk configuration in httpd.conf if none is detected. This includes a workers.properties file and urimap file

Package Types

none

2.1.1. Apache - Virtual Host Service

Overview

Table 2.7. Overview

Description: 
Singleton: no
Plugin:Apache

Child Resource Types

Connection Properties

Table 2.8. 

NameDescriptionRequiredInternal Name
Response Time Log Filethe full path to the log file containing response-time stats for this virtual host no responseTimeLogFile
Response Time Url Excludesa space-delimited list of regular expressions specifying URLs that should be excluded from response-time stats collection no responseTimeUrlExcludes
Response Time Url Transformsa space-delimited list of Perl-style substitution expressions that should be applied to all URLs for which response-time stats are collected (e.g. |^/dept/finance/.*|/dept/finance/*|) no responseTimeUrlTransforms
URLThe http or https URL that will be used to check availability for this virtual host. Note that SSL certificate validation is disabled during availability checks if this is an HTTPS URL. If the URL is not set, the availability is determined by pinging the configured SNMP location. no url

Note

You must use the internal name to reference Configuration Properties in Dynamic Group Definition expressions.

Metrics

Table 2.9. Metrics

NameTypeDescriptionInternal Name
Hosttraitthe host name or IP address of this virtual hostwwwServiceName
Porttraitthe TCP port of this virtual hostwwwServiceProtocol
Administratortraitthe administrator of this virtual hostwwwServiceContact
Total Number of RequestsmeasurementThe number of inbound requests on the servicewwwSummaryInRequests
Total Number of Requests per MinutemeasurementThe number of inbound requests on the servicewwwSummaryInRequests
Total Number of Bytes ReceivedmeasurementThe number of bytes received by the servicewwwSummaryInLowBytes
Total Number of Bytes Received per MinutemeasurementThe number of bytes received by the servicewwwSummaryInLowBytes
Total Number of ResponsesmeasurementThe number of outbound requests on the servicewwwSummaryOutResponses
Total Number of Responses per MinutemeasurementThe number of outbound requests on the servicewwwSummaryOutResponses
Total Number of Bytes SentmeasurementThe number of bytes sent by the servicewwwSummaryOutLowBytes
Total Number of Bytes Sent per MinutemeasurementThe number of bytes sent by the servicewwwSummaryOutLowBytes
Number of GET RequestsmeasurementThe number of inbound GET requests on the servicewwwRequestInRequests.GET
Number of GET Requests per MinutemeasurementThe number of inbound GET requests on the servicewwwRequestInRequests.GET
Number of HEAD RequestsmeasurementThe number of inbound HEAD requests on the servicewwwRequestInRequests.HEAD
Number of HEAD Requests per MinutemeasurementThe number of inbound HEAD requests on the servicewwwRequestInRequests.HEAD
Number of POST RequestsmeasurementThe number of inbound POST requests on the servicewwwRequestInRequests.POST
Number of POST Requests per MinutemeasurementThe number of inbound POST requests on the servicewwwRequestInRequests.POST
Number of PUT RequestsmeasurementThe number of inbound PUT requests on the servicewwwRequestInRequests.PUT
Number of PUT Requests per MinutemeasurementThe number of inbound PUT requests on the servicewwwRequestInRequests.PUT
Bytes Received for GET RequestsmeasurementThe number of bytes received by GET requests on the servicewwwRequestInBytes.GET
Bytes Received for GET Requests per MinutemeasurementThe number of bytes received by GET requests on the servicewwwRequestInBytes.GET
Bytes Received for HEAD RequestsmeasurementThe number of bytes received by HEAD requests on the servicewwwRequestInBytes.HEAD
Bytes Received for HEAD Requests per MinutemeasurementThe number of bytes received by HEAD requests on the servicewwwRequestInBytes.HEAD
Bytes Received for POST RequestsmeasurementThe number of bytes received by POST requests on the servicewwwRequestInBytes.POST
Bytes Received for POST Requests per MinutemeasurementThe number of bytes received by POST requests on the servicewwwRequestInBytes.POST
Bytes Received for PUT RequestsmeasurementThe number of bytes received by PUT requests on the servicewwwRequestInBytes.PUT
Bytes Received for PUT Requests per MinutemeasurementThe number of bytes received by PUT requests on the servicewwwRequestInBytes.PUT
Number of 200 ResponsesmeasurementThe number of 200 responses generated by this servicewwwResponseOutResponses.200
Number of 200 Responses per MinutemeasurementThe number of 200 responses generated by this servicewwwResponseOutResponses.200
Number of 301 ResponsesmeasurementThe number of 301 responses generated by this servicewwwResponseOutResponses.301
Number of 301 Responses per MinutemeasurementThe number of 301 responses generated by this servicewwwResponseOutResponses.301
Number of 302 ResponsesmeasurementThe number of 302 responses generated by this servicewwwResponseOutResponses.302
Number of 302 Responses per MinutemeasurementThe number of 302 responses generated by this servicewwwResponseOutResponses.302
Number of 401 ResponsesmeasurementThe number of 401 responses generated by this servicewwwResponseOutResponses.401
Number of 401 Responses per MinutemeasurementThe number of 401 responses generated by this servicewwwResponseOutResponses.401
Number of 403 ResponsesmeasurementThe number of 403 responses generated by this servicewwwResponseOutResponses.403
Number of 403 Responses per MinutemeasurementThe number of 403 responses generated by this servicewwwResponseOutResponses.403
Number of 404 ResponsesmeasurementThe number of 404 responses generated by this servicewwwResponseOutResponses.404
Number of 404 Responses per MinutemeasurementThe number of 404 responses generated by this servicewwwResponseOutResponses.404
Number of 500 ResponsesmeasurementThe number of 500 responses generated by this servicewwwResponseOutResponses.500
Number of 500 Responses per MinutemeasurementThe number of 500 responses generated by this servicewwwResponseOutResponses.500
Bytes Sent for 200 ResponsesmeasurementThe number of bytes sent for 200 responses generated by this servicewwwResponseOutBytes.200
Bytes Sent for 200 Responses per MinutemeasurementThe number of bytes sent for 200 responses generated by this servicewwwResponseOutBytes.200
Bytes Sent for 301 ResponsesmeasurementThe number of bytes sent for 301 responses generated by this servicewwwResponseOutBytes.301
Bytes Sent for 301 Responses per MinutemeasurementThe number of bytes sent for 301 responses generated by this servicewwwResponseOutBytes.301
Bytes Sent for 302 ResponsesmeasurementThe number of bytes sent for 302 responses generated by this servicewwwResponseOutBytes.302
Bytes Sent for 302 Responses per MinutemeasurementThe number of bytes sent for 302 responses generated by this servicewwwResponseOutBytes.302
Bytes Sent for 401 ResponsesmeasurementThe number of bytes sent for 401 responses generated by this servicewwwResponseOutBytes.401
Bytes Sent for 401 Responses per MinutemeasurementThe number of bytes sent for 401 responses generated by this servicewwwResponseOutBytes.401
Bytes Sent for 403 ResponsesmeasurementThe number of bytes sent for 403 responses generated by this servicewwwResponseOutBytes.403
Bytes Sent for 403 Responses per MinutemeasurementThe number of bytes sent for 403 responses generated by this servicewwwResponseOutBytes.403
Bytes Sent for 404 ResponsesmeasurementThe number of bytes sent for 404 responses generated by this servicewwwResponseOutBytes.404
Bytes Sent for 404 Responses per MinutemeasurementThe number of bytes sent for 404 responses generated by this servicewwwResponseOutBytes.404
Bytes Sent for 500 ResponsesmeasurementThe number of bytes sent for 500 responses generated by this servicewwwResponseOutBytes.500
Bytes Sent for 500 Responses per MinutemeasurementThe number of bytes sent for 500 responses generated by this servicewwwResponseOutBytes.500
HTTP Response TimecalltimeThe minimum, maximum, and average response times for HTTP requests serviced by this virtual hostResponseTime

Note

You must use the internal name to reference Traits in Dynamic Group Definition expressions.

Configuration Properties

Table 2.10. 

NameDescriptionRequiredInternal Name
Error LogSets the name of the file to which the server will log any errors it encounters. If the file-path is not absolute then it is assumed to be relative to the ServerRoot. If the file-path begins with a pipe (|) then it is assumed to be a command to spawn to handle the error log. Using syslog instead of a filename enables logging via syslogd(8) if the system supports it. The default is to use syslog facility local7, but you can override this by using the syslog:facility syntax where facility can be one of the names usually documented in syslog(1). no ErrorLog
Request logsConfigure the logging of requests to the server. yes CustomLog
Server NameSets the request scheme, hostname and port that the server uses to identify itself. This is used when creating redirection URLs. If no ServerName is specified, then the server attempts to deduce the hostname by performing a reverse lookup on the IP address. If no port is specified in the ServerName, then the server will use the port from the incoming request. For optimal reliability and predictability, you should specify an explicit hostname and port using the ServerName directive. If you are using name-based virtual hosts, the ServerName inside a <VirtualHost> section specifies what hostname must appear in the request's Host: header to match this virtual host. no ServerName
Server Alias  yes ServerAlias
Server AdminThe email address or URL to contact the server administrator in case of errors. This address is used in various Apache generated error messages. no ServerAdmin
Document RootThis directive sets the directory from which httpd will serve files. Unless matched by a directive like Alias, the server appends the path from the requested URL to the document root to make the path to the document. If the directory-path is not absolute then it is assumed to be relative to the ServerRoot. The DocumentRoot should be specified without a trailing slash. yes DocumentRoot
Add Default CharsetThis directive specifies a default value for the media type charset parameter (the name of a character encoding) to be added to a response if and only if the response's content-type is either text/plain or text/html. Value "Off" disables this functionality. "On" enables a default charset of iso-8859-1. Any other value is assumed to be the charset to be used, which should be one of the IANA registered charset values for use in MIME media types. no AddDefaultCharset
AliasThe Alias directive allows documents to be stored in the local filesystem other than under the DocumentRoot. With " Alias /image /ftp/pub/image", a request for http://myserver/image/foo.gif would cause the server to return the file /ftp/pub/image/foo.gif. Only complete path segments are matched, so the above alias would not match a request for http://myserver/imagefoo.gif. Note that you may need to specify additional <Directory> sections which cover the destination of aliases. In particular, if you are creating an Alias to a directory outside of your DocumentRoot, you may need to explicitly permit access to the target directory. yes Alias
Default TypeThere will be times when the server is asked to provide a document whose type cannot be determined by its MIME types mappings. The server SHOULD inform the client of the content-type of the document. If the server is unable to determine this by normal means, it will set it to the configured DefaultType. no DefaultType
Directory IndexSets the list of resources to look for, when the client requests an index of the directory by specifying a / at the end of the directory name. Note that the documents do not need to be relative to the directory. no DirectoryIndex
Error DocumentIn the event of a problem or error, Apache can be configured to do one of four things, 1. output a simple hardcoded error message, 2. output a customized message, 3. redirect to a local URL-path to handle the problem/error, 4. redirect to an external URL to handle the problem/error. The first option is the default, while options 2-4 are configured using the ErrorDocument directive, which is followed by the HTTP response code and a URL or a message. Apache will sometimes offer additional information regarding the problem/error. yes ErrorDocument
TimeoutThe TimeOut directive defines the length of time Apache will wait for I/O in various circumstances. no Timeout
OptionsThe Options directive controls which server features are available in a particular directory. no Options
Use Canonical NameWith UseCanonicalName On Apache will use the hostname and port specified in the ServerName directive to construct the canonical name for the server. This name is used in all self-referential URLs, and for the values of SERVER_NAME and SERVER_PORT in CGIs. With UseCanonicalName Off Apache will form self-referential URLs using the hostname and port supplied by the client if any are supplied (otherwise it will use the canonical name, as defined above). UseCanonicalName DNS is intended for use with mass IP-based virtual hosting to support ancient clients that do not provide a Host: header. With this option Apache does a reverse DNS lookup on the server IP address that the client connected to in order to work out self-referential URLs. no UseCanonicalName
Use Canonical Physical PortIn many situations Apache must construct a self-referential URL -- that is, a URL that refers back to the same server. With UseCanonicalPhysicalPort On Apache will, when constructing the canonical port for the server to honor the UseCanonicalName directive, provide the actual physical port number being used by this request as a potential port. With UseCanonicalPhysicalPort Off Apache will not ever use the actual physical port number, instead relying on all configured information to construct a valid port number. no UseCanonicalPhysicalPort

Note

You must use the internal name to reference Configuration Properties in Dynamic Group Definition expressions.

Operations

none

Package Types

none

2.1.1.1. Apache - Directory Service

Overview

Table 2.11. Overview

Description: 
Singleton: no
Plugin:Apache
Child Resource Types
Connection Properties

Table 2.12. 

NameDescriptionRequiredInternal Name
Regular ExpressionDoes the name of this directory denote a regular expression? yes regexp

Note

You must use the internal name to reference Configuration Properties in Dynamic Group Definition expressions.
Metrics
none
Configuration Properties

Table 2.13. 

NameDescriptionRequiredInternal Name
IfModule ConditionsList of modules which must be loaded to use directive configuration. yes IfModules
OrderThe Order directive, along with the Allow and Deny directives, controls a three-pass access control system. The first pass processes either all Allow or all Deny directives, as specified by the Order directive. The second pass parses the rest of the directives (Deny or Allow). The third pass applies to all requests which do not match either of the first two. no Order
AllowThe Allow directive affects which hosts can access an area of the server. Access can be controlled by hostname, IP address, IP address range. The environment variables settings are not supported in the user interface. no Allow
DenyThe arguments for the Deny directive are identical to the arguments for the Allow directive. no Deny
Allow Override  no AllowOverride
Add Default CharsetThis directive specifies a default value for the media type charset parameter (the name of a character encoding) to be added to a response if and only if the response's content-type is either text/plain or text/html. Value "Off" disables this functionality. "On" enables a default charset of iso-8859-1. Any other value is assumed to be the charset to be used, which should be one of the IANA registered charset values for use in MIME media types. no AddDefaultCharset
Default TypeThere will be times when the server is asked to provide a document whose type cannot be determined by its MIME types mappings. The server SHOULD inform the client of the content-type of the document. If the server is unable to determine this by normal means, it will set it to the configured DefaultType. no DefaultType
Directory IndexSets the list of resources to look for, when the client requests an index of the directory by specifying a / at the end of the directory name. Note that the documents do not need to be relative to the directory. no DirectoryIndex
Error DocumentIn the event of a problem or error, Apache can be configured to do one of four things, 1. output a simple hardcoded error message, 2. output a customized message, 3. redirect to a local URL-path to handle the problem/error, 4. redirect to an external URL to handle the problem/error. The first option is the default, while options 2-4 are configured using the ErrorDocument directive, which is followed by the HTTP response code and a URL or a message. Apache will sometimes offer additional information regarding the problem/error. yes ErrorDocument
OptionsThe Options directive controls which server features are available in a particular directory. no Options
Use Canonical NameWith UseCanonicalName On Apache will use the hostname and port specified in the ServerName directive to construct the canonical name for the server. This name is used in all self-referential URLs, and for the values of SERVER_NAME and SERVER_PORT in CGIs. With UseCanonicalName Off Apache will form self-referential URLs using the hostname and port supplied by the client if any are supplied (otherwise it will use the canonical name, as defined above). UseCanonicalName DNS is intended for use with mass IP-based virtual hosting to support ancient clients that do not provide a Host: header. With this option Apache does a reverse DNS lookup on the server IP address that the client connected to in order to work out self-referential URLs. no UseCanonicalName
Use Canonical Physical PortIn many situations Apache must construct a self-referential URL -- that is, a URL that refers back to the same server. With UseCanonicalPhysicalPort On Apache will, when constructing the canonical port for the server to honor the UseCanonicalName directive, provide the actual physical port number being used by this request as a potential port. With UseCanonicalPhysicalPort Off Apache will not ever use the actual physical port number, instead relying on all configured information to construct a valid port number. no UseCanonicalPhysicalPort

Note

You must use the internal name to reference Configuration Properties in Dynamic Group Definition expressions.
Operations
none
Package Types
none
2.1.1.1.1. Apache - IfModule Parameters Service
Overview

Table 2.14. Overview

Description: 
Singleton: no
Plugin:Apache
Child Resource Types
none
Connection Properties
none
Metrics
none
Configuration Properties

Table 2.15. 

NameDescriptionRequiredInternal Name
IfModule ConditionsList of modules which must be loaded to use directive configuration. yes IfModules
OrderThe Order directive, along with the Allow and Deny directives, controls a three-pass access control system. The first pass processes either all Allow or all Deny directives, as specified by the Order directive. The second pass parses the rest of the directives (Deny or Allow). The third pass applies to all requests which do not match either of the first two. no Order
AllowThe Allow directive affects which hosts can access an area of the server. Access can be controlled by hostname, IP address, IP address range. The environment variables settings are not supported in the user interface. no Allow
DenyThe arguments for the Deny directive are identical to the arguments for the Allow directive. no Deny
Allow Override  no AllowOverride
Add Default CharsetThis directive specifies a default value for the media type charset parameter (the name of a character encoding) to be added to a response if and only if the response's content-type is either text/plain or text/html. Value "Off" disables this functionality. "On" enables a default charset of iso-8859-1. Any other value is assumed to be the charset to be used, which should be one of the IANA registered charset values for use in MIME media types. no AddDefaultCharset
Default TypeThere will be times when the server is asked to provide a document whose type cannot be determined by its MIME types mappings. The server SHOULD inform the client of the content-type of the document. If the server is unable to determine this by normal means, it will set it to the configured DefaultType. no DefaultType
Directory IndexSets the list of resources to look for, when the client requests an index of the directory by specifying a / at the end of the directory name. Note that the documents do not need to be relative to the directory. no DirectoryIndex
Error DocumentIn the event of a problem or error, Apache can be configured to do one of four things, 1. output a simple hardcoded error message, 2. output a customized message, 3. redirect to a local URL-path to handle the problem/error, 4. redirect to an external URL to handle the problem/error. The first option is the default, while options 2-4 are configured using the ErrorDocument directive, which is followed by the HTTP response code and a URL or a message. Apache will sometimes offer additional information regarding the problem/error. yes ErrorDocument
OptionsThe Options directive controls which server features are available in a particular directory. no Options
Use Canonical NameWith UseCanonicalName On Apache will use the hostname and port specified in the ServerName directive to construct the canonical name for the server. This name is used in all self-referential URLs, and for the values of SERVER_NAME and SERVER_PORT in CGIs. With UseCanonicalName Off Apache will form self-referential URLs using the hostname and port supplied by the client if any are supplied (otherwise it will use the canonical name, as defined above). UseCanonicalName DNS is intended for use with mass IP-based virtual hosting to support ancient clients that do not provide a Host: header. With this option Apache does a reverse DNS lookup on the server IP address that the client connected to in order to work out self-referential URLs. no UseCanonicalName
Use Canonical Physical PortIn many situations Apache must construct a self-referential URL -- that is, a URL that refers back to the same server. With UseCanonicalPhysicalPort On Apache will, when constructing the canonical port for the server to honor the UseCanonicalName directive, provide the actual physical port number being used by this request as a potential port. With UseCanonicalPhysicalPort Off Apache will not ever use the actual physical port number, instead relying on all configured information to construct a valid port number. no UseCanonicalPhysicalPort

Note

You must use the internal name to reference Configuration Properties in Dynamic Group Definition expressions.
Operations
none
Package Types
none

2.1.1.2. Apache - IfModule Service

Overview

Table 2.16. Overview

Description: 
Singleton: no
Plugin:Apache
Child Resource Types
none
Connection Properties
none
Metrics
none
Configuration Properties

Table 2.17. 

NameDescriptionRequiredInternal Name
IfModule ConditionsList of modules which must be loaded to use directive configuration. yes IfModules
OrderThe Order directive, along with the Allow and Deny directives, controls a three-pass access control system. The first pass processes either all Allow or all Deny directives, as specified by the Order directive. The second pass parses the rest of the directives (Deny or Allow). The third pass applies to all requests which do not match either of the first two. no Order
AllowThe Allow directive affects which hosts can access an area of the server. Access can be controlled by hostname, IP address, IP address range. The environment variables settings are not supported in the user interface. no Allow
DenyThe arguments for the Deny directive are identical to the arguments for the Allow directive. no Deny
Allow Override  no AllowOverride
Add Default CharsetThis directive specifies a default value for the media type charset parameter (the name of a character encoding) to be added to a response if and only if the response's content-type is either text/plain or text/html. Value "Off" disables this functionality. "On" enables a default charset of iso-8859-1. Any other value is assumed to be the charset to be used, which should be one of the IANA registered charset values for use in MIME media types. no AddDefaultCharset
Default TypeThere will be times when the server is asked to provide a document whose type cannot be determined by its MIME types mappings. The server SHOULD inform the client of the content-type of the document. If the server is unable to determine this by normal means, it will set it to the configured DefaultType. no DefaultType
Directory IndexSets the list of resources to look for, when the client requests an index of the directory by specifying a / at the end of the directory name. Note that the documents do not need to be relative to the directory. no DirectoryIndex
Error DocumentIn the event of a problem or error, Apache can be configured to do one of four things, 1. output a simple hardcoded error message, 2. output a customized message, 3. redirect to a local URL-path to handle the problem/error, 4. redirect to an external URL to handle the problem/error. The first option is the default, while options 2-4 are configured using the ErrorDocument directive, which is followed by the HTTP response code and a URL or a message. Apache will sometimes offer additional information regarding the problem/error. yes ErrorDocument
OptionsThe Options directive controls which server features are available in a particular directory. no Options
Use Canonical NameWith UseCanonicalName On Apache will use the hostname and port specified in the ServerName directive to construct the canonical name for the server. This name is used in all self-referential URLs, and for the values of SERVER_NAME and SERVER_PORT in CGIs. With UseCanonicalName Off Apache will form self-referential URLs using the hostname and port supplied by the client if any are supplied (otherwise it will use the canonical name, as defined above). UseCanonicalName DNS is intended for use with mass IP-based virtual hosting to support ancient clients that do not provide a Host: header. With this option Apache does a reverse DNS lookup on the server IP address that the client connected to in order to work out self-referential URLs. no UseCanonicalName
Use Canonical Physical PortIn many situations Apache must construct a self-referential URL -- that is, a URL that refers back to the same server. With UseCanonicalPhysicalPort On Apache will, when constructing the canonical port for the server to honor the UseCanonicalName directive, provide the actual physical port number being used by this request as a potential port. With UseCanonicalPhysicalPort Off Apache will not ever use the actual physical port number, instead relying on all configured information to construct a valid port number. no UseCanonicalPhysicalPort

Note

You must use the internal name to reference Configuration Properties in Dynamic Group Definition expressions.
Operations
none
Package Types
none

2.1.2. Apache - Mod JK Service

Overview

Table 2.18. Overview

Description:Management of mod_jk
Singleton: yes
Plugin:Apache

Child Resource Types

none

Connection Properties

Table 2.19. 

NameDescriptionRequiredInternal Name
Path to workers.propertiesThe path to the file containing worker properties. If this is a relative path, it will be looked up in the server root of the parent Apache server no workerFile
Path to the uriworkers fileThe path to the file containing uri to worker mappings. If this is a relative path, it will be looked up in the server root of the parent Apache server no uriWorkerFile

Note

You must use the internal name to reference Configuration Properties in Dynamic Group Definition expressions.

Metrics

none

Configuration Properties

none

Operations

none

Package Types

none