missing mod-cluster when starting jboss
ohmygod Nov 25, 2013 11:38 PMI seperatedly deployed cluster-demo.war in standalone deployments in jboss with command standalone.bat --server-config=standalone-ha.xml and found following error saying mod-cluster is missing started. Any idea how to make it work?
2013-11-26 12:30:37,780;[ServerService Thread Pool -- 28];INFO ;org.jboss.as.server;JBAS018559: Deployed "cluster-demo.war" (runtime-name : "cluster-d emo.war") 2013-11-26 12:30:37,785;[Controller Boot Thread];INFO ;org.jboss.as.controller;JBAS014774: Service status report JBAS014775: New missing/unsatisfied dependencies: service jboss.web.connector.ajp (missing) dependents: [service jboss.mod-cluster] 2013-11-26 12:30:37,819;[Controller Boot Thread];INFO ;org.jboss.as;JBAS015961: Http management interface listening on http://127.0.0.1:9990/managemen t 2013-11-26 12:30:37,819;[Controller Boot Thread];INFO ;org.jboss.as;JBAS015951: Admin console listening on http://127.0.0.1:9990 2013-11-26 12:30:37,820;[Controller Boot Thread];ERROR;org.jboss.as;JBAS015875: JBoss EAP 6.1.0.Alpha1 (AS 7.2.0.Alpha1-redhat-4) started (with errors ) in 25216ms - Started 1210 of 1347 services (1 services failed or missing dependencies, 135 services are passive or on-demand)
I have installed mod_cluster-1.2.6.Final-windows-amd64 on my windows 64bit and started Apache2.2 service. And I have executed below command trying to start httpd but did not see any result.
D:\test\software\JBoss\httpd-2.2\bin>httpd.exe -k start D:\welocalize\software\JBoss\httpd-2.2\bin>
standalone-ha.xml:
<?xml version='1.0' encoding='UTF-8'?>
<server name="standalone-node1" xmlns="urn:jboss:domain:1.4">
<extensions>
<extension module="org.jboss.as.clustering.infinispan"/>
<extension module="org.jboss.as.clustering.jgroups"/>
<extension module="org.jboss.as.connector"/>
<extension module="org.jboss.as.deployment-scanner"/>
<extension module="org.jboss.as.ee"/>
<extension module="org.jboss.as.ejb3"/>
<extension module="org.jboss.as.jaxrs"/>
<extension module="org.jboss.as.jdr"/>
<extension module="org.jboss.as.jmx"/>
<extension module="org.jboss.as.jpa"/>
<extension module="org.jboss.as.jsf"/>
<extension module="org.jboss.as.logging"/>
<extension module="org.jboss.as.mail"/>
<extension module="org.jboss.as.messaging"/>
<extension module="org.jboss.as.modcluster"/>
<extension module="org.jboss.as.naming"/>
<extension module="org.jboss.as.pojo"/>
<extension module="org.jboss.as.remoting"/>
<extension module="org.jboss.as.sar"/>
<extension module="org.jboss.as.security"/>
<extension module="org.jboss.as.threads"/>
<extension module="org.jboss.as.transactions"/>
<extension module="org.jboss.as.web"/>
<extension module="org.jboss.as.webservices"/>
<extension module="org.jboss.as.weld"/>
</extensions>
<system-properties>
<property name="org.apache.tomcat.util.http.Parameters.MAX_COUNT" value="10000"/>
<property name="org.apache.coyote.http11.Http11Protocol.COMPRESSION" value="on"/>
<property name="org.apache.coyote.http11.Http11Protocol.COMPRESSION_MIME_TYPES" value="text/javascript,text/css,text/html"/>
</system-properties>
<management>
<security-realms>
<security-realm name="ManagementRealm">
<authentication>
<local default-user="$local"/>
<properties path="mgmt-users.properties" relative-to="jboss.server.config.dir"/>
</authentication>
</security-realm>
<security-realm name="ApplicationRealm">
<authentication>
<local default-user="$local" allowed-users="*"/>
<properties path="application-users.properties" relative-to="jboss.server.config.dir"/>
</authentication>
<authorization>
<properties path="application-roles.properties" relative-to="jboss.server.config.dir"/>
</authorization>
</security-realm>
</security-realms>
<management-interfaces>
<native-interface security-realm="ManagementRealm">
<socket-binding native="management-native"/>
</native-interface>
<http-interface security-realm="ManagementRealm">
<socket-binding http="management-http"/>
</http-interface>
</management-interfaces>
</management>
<profile>
<subsystem xmlns="urn:jboss:domain:logging:1.2">
<console-handler name="CONSOLE" autoflush="true">
<level name="INFO"/>
<formatter>
<pattern-formatter pattern="%d;[%t];%-5p;%c;%m%n"/>
</formatter>
</console-handler>
<periodic-rotating-file-handler name="demo" autoflush="true">
<formatter>
<pattern-formatter pattern="%d;[%t];%-5p;%c;%m%n"/>
</formatter>
<file relative-to="jboss.server.log.dir" path="../../../../logs/GlobalSight.log"/>
<suffix value=".yyyyMMdd"/>
<append value="true"/>
</periodic-rotating-file-handler>
<periodic-rotating-file-handler name="activity" autoflush="true">
<formatter>
<pattern-formatter pattern="%d [%t] %m%n"/>
</formatter>
<file relative-to="jboss.server.log.dir" path="../../../../logs/activity.log"/>
<suffix value=".yyyyMMdd"/>
<append value="true"/>
</periodic-rotating-file-handler>
<periodic-rotating-file-handler name="TermAuditLog" autoflush="true">
<formatter>
<pattern-formatter pattern="%m%n"/>
</formatter>
<file relative-to="jboss.server.log.dir" path="../../../../logs/term_audit.log"/>
<suffix value=".yyyyMMdd"/>
<append value="true"/>
</periodic-rotating-file-handler>
<periodic-rotating-file-handler name="CustomerUpload" autoflush="true">
<formatter>
<pattern-formatter pattern="%m%n"/>
</formatter>
<file relative-to="jboss.server.log.dir" path="../../../../logs/customer_upload.log"/>
<suffix value=".yyyyMMdd"/>
<append value="true"/>
</periodic-rotating-file-handler>
<logger category="com.arjuna">
<level name="WARN"/>
</logger>
<logger category="org.apache.tomcat.util.modeler">
<level name="WARN"/>
</logger>
<logger category="sun.rmi">
<level name="WARN"/>
</logger>
<logger category="jacorb">
<level name="WARN"/>
</logger>
<logger category="jacorb.config">
<level name="ERROR"/>
</logger>
<logger category="org.jboss.as.dependency">
<level name="ERROR"/>
</logger>
<logger category="org.quartz">
<level name="ERROR"/>
</logger>
<logger category="org.jbpm">
<level name="ERROR"/>
</logger>
<logger category="org.hibernate">
<level name="ERROR"/>
</logger>
<logger category="net.sf.ehcache">
<level name="ERROR"/>
</logger>
<logger category="org.artofsolving.jodconverter.office">
<level name="ERROR"/>
</logger>
<logger category="com.arjuna.ats.jta">
<level name="ERROR"/>
</logger>
<logger category="com.mchange.v2.c3p0.impl">
<level name="ERROR"/>
</logger>
<logger category="com.demo" use-parent-handlers="false">
<level name="INFO"/>
<handlers>
<handler name="demo"/>
</handlers>
</logger>
<logger category="com.demo.log.ActivityLog.entry" use-parent-handlers="false">
<level name="INFO"/>
<handlers>
<handler name="activity"/>
</handlers>
</logger>
<logger category="TermAuditLog" use-parent-handlers="false">
<level name="INFO"/>
<handlers>
<handler name="TermAuditLog"/>
</handlers>
</logger>
<logger category="CustomerUpload" use-parent-handlers="false">
<level name="INFO"/>
<handlers>
<handler name="CustomerUpload"/>
</handlers>
</logger>
<root-logger>
<level name="INFO"/>
<handlers>
<handler name="CONSOLE"/>
<handler name="demo"/>
</handlers>
</root-logger>
</subsystem>
<subsystem xmlns="urn:jboss:domain:datasources:1.1">
<datasources>
<datasource jndi-name="java:jboss/datasources/mysqlDS" pool-name="mysqlDS" enabled="true" use-java-context="true">
<connection-url>jdbc:mysql://localhost:3306/demo</connection-url>
<driver>mysql</driver>
<security>
<user-name>demo</user-name>
<password>password</password>
</security>
</datasource>
<drivers>
<driver name="mysql" module="com.mysql"/>
<driver name="h2" module="com.h2database.h2">
<xa-datasource-class>org.h2.jdbcx.JdbcDataSource</xa-datasource-class>
</driver>
</drivers>
</datasources>
</subsystem>
<subsystem xmlns="urn:jboss:domain:deployment-scanner:1.1">
<deployment-scanner path="deployments" relative-to="jboss.server.base.dir" scan-interval="5000"/>
</subsystem>
<subsystem xmlns="urn:jboss:domain:ee:1.1">
<spec-descriptor-property-replacement>false</spec-descriptor-property-replacement>
<jboss-descriptor-property-replacement>true</jboss-descriptor-property-replacement>
</subsystem>
<subsystem xmlns="urn:jboss:domain:ejb3:1.4">
<session-bean>
<stateless>
<bean-instance-pool-ref pool-name="slsb-strict-max-pool"/>
</stateless>
<stateful default-access-timeout="5000" cache-ref="simple" clustered-cache-ref="clustered"/>
<singleton default-access-timeout="5000"/>
</session-bean>
<mdb>
<resource-adapter-ref resource-adapter-name="hornetq-ra"/>
<bean-instance-pool-ref pool-name="mdb-strict-max-pool"/>
</mdb>
<pools>
<bean-instance-pools>
<strict-max-pool name="slsb-strict-max-pool" max-pool-size="20" instance-acquisition-timeout="5" instance-acquisition-timeout-unit="MINUTES"/>
<strict-max-pool name="mdb-strict-max-pool" max-pool-size="20" instance-acquisition-timeout="5" instance-acquisition-timeout-unit="MINUTES"/>
</bean-instance-pools>
</pools>
<caches>
<cache name="simple" aliases="NoPassivationCache"/>
<cache name="passivating" passivation-store-ref="file" aliases="SimpleStatefulCache"/>
</caches>
<passivation-stores>
<file-passivation-store name="file"/>
<cluster-passivation-store name="infinispan" cache-container="ejb"/>
</passivation-stores>
<async thread-pool-name="default"/>
<timer-service thread-pool-name="default">
<data-store path="timer-service-data" relative-to="jboss.server.data.dir"/>
</timer-service>
<remote connector-ref="remoting-connector" thread-pool-name="default"/>
<thread-pools>
<thread-pool name="default">
<max-threads count="10"/>
<keepalive-time time="100" unit="milliseconds"/>
</thread-pool>
</thread-pools>
<default-security-domain value="other"/>
<default-missing-method-permissions-deny-access value="true"/>
</subsystem>
<subsystem xmlns="urn:jboss:domain:infinispan:1.4">
<cache-container name="singleton" aliases="cluster ha-partition" default-cache="default">
<transport lock-timeout="60000"/>
<replicated-cache name="default" mode="SYNC" batching="true">
<locking isolation="REPEATABLE_READ"/>
</replicated-cache>
</cache-container>
<cache-container name="web" aliases="standard-session-cache" default-cache="repl" module="org.jboss.as.clustering.web.infinispan">
<transport lock-timeout="60000"/>
<replicated-cache name="repl" mode="ASYNC" batching="true">
<file-store/>
</replicated-cache>
<replicated-cache name="sso" mode="SYNC" batching="true"/>
<distributed-cache name="dist" mode="ASYNC" batching="true" l1-lifespan="0">
<file-store/>
</distributed-cache>
</cache-container>
<cache-container name="ejb" aliases="sfsb sfsb-cache" default-cache="repl" module="org.jboss.as.clustering.ejb3.infinispan">
<transport lock-timeout="60000"/>
<replicated-cache name="repl" mode="ASYNC" batching="true">
<eviction strategy="LRU" max-entries="10000"/>
<file-store/>
</replicated-cache>
<!--
~ Clustered cache used internally by EJB subsytem for managing the client-mapping(s) of
~ the socketbinding referenced by the EJB remoting connector
-->
<replicated-cache name="remote-connector-client-mappings" mode="SYNC" batching="true"/>
<distributed-cache name="dist" mode="ASYNC" batching="true" l1-lifespan="0">
<eviction strategy="LRU" max-entries="10000"/>
<file-store/>
</distributed-cache>
</cache-container>
<cache-container name="hibernate" default-cache="local-query" module="org.jboss.as.jpa.hibernate:4">
<transport lock-timeout="60000"/>
<local-cache name="local-query">
<transaction mode="NONE"/>
<eviction strategy="LRU" max-entries="10000"/>
<expiration max-idle="100000"/>
</local-cache>
<invalidation-cache name="entity" mode="SYNC">
<transaction mode="NON_XA"/>
<eviction strategy="LRU" max-entries="10000"/>
<expiration max-idle="100000"/>
</invalidation-cache>
<replicated-cache name="timestamps" mode="ASYNC">
<transaction mode="NONE"/>
<eviction strategy="NONE"/>
</replicated-cache>
</cache-container>
</subsystem>
<subsystem xmlns="urn:jboss:domain:jaxrs:1.0"/>
<subsystem xmlns="urn:jboss:domain:jca:1.1">
<archive-validation enabled="true" fail-on-error="true" fail-on-warn="false"/>
<bean-validation enabled="true"/>
<default-workmanager>
<short-running-threads>
<core-threads count="100"/>
<queue-length count="100"/>
<max-threads count="100"/>
<keepalive-time time="10" unit="seconds"/>
</short-running-threads>
<long-running-threads>
<core-threads count="100"/>
<queue-length count="100"/>
<max-threads count="100"/>
<keepalive-time time="10" unit="seconds"/>
</long-running-threads>
</default-workmanager>
<cached-connection-manager/>
</subsystem>
<subsystem xmlns="urn:jboss:domain:jdr:1.0"/>
<subsystem xmlns="urn:jboss:domain:jgroups:1.1" default-stack="udp">
<stack name="udp">
<transport type="UDP" socket-binding="jgroups-udp"/>
<protocol type="PING"/>
<protocol type="MERGE3"/>
<protocol type="FD_SOCK" socket-binding="jgroups-udp-fd"/>
<protocol type="FD"/>
<protocol type="VERIFY_SUSPECT"/>
<protocol type="pbcast.NAKACK2"/>
<protocol type="UNICAST2"/>
<protocol type="pbcast.STABLE"/>
<protocol type="pbcast.GMS"/>
<protocol type="UFC"/>
<protocol type="MFC"/>
<protocol type="FRAG2"/>
<protocol type="RSVP"/>
</stack>
<stack name="tcp">
<transport type="TCP" socket-binding="jgroups-tcp"/>
<protocol type="MPING" socket-binding="jgroups-mping"/>
<protocol type="MERGE2"/>
<protocol type="FD_SOCK" socket-binding="jgroups-tcp-fd"/>
<protocol type="FD"/>
<protocol type="VERIFY_SUSPECT"/>
<protocol type="pbcast.NAKACK2"/>
<protocol type="UNICAST2"/>
<protocol type="pbcast.STABLE"/>
<protocol type="pbcast.GMS"/>
<protocol type="UFC"/>
<protocol type="MFC"/>
<protocol type="FRAG2"/>
<protocol type="RSVP"/>
</stack>
</subsystem>
<subsystem xmlns="urn:jboss:domain:jmx:1.2">
<expose-resolved-model/>
<expose-expression-model/>
<remoting-connector/>
</subsystem>
<subsystem xmlns="urn:jboss:domain:jpa:1.1">
<jpa default-datasource="" default-extended-persistence-inheritance="DEEP"/>
</subsystem>
<subsystem xmlns="urn:jboss:domain:jsf:1.0"/>
<!--
<subsystem xmlns="urn:jboss:domain:mail:1.0">
<mail-session jndi-name="java:jboss/mail/Default">
<smtp-server outbound-socket-binding-ref="mail-smtp" ssl="false">
<login name="nobody" password="nobody"/>
</smtp-server>
</mail-session>
</subsystem>
-->
<subsystem xmlns="urn:jboss:domain:messaging:1.3">
<hornetq-server>
<persistence-enabled>false</persistence-enabled>
<security-enabled>false</security-enabled>
<journal-type>NIO</journal-type>
<journal-file-size>10485760</journal-file-size>
<journal-min-files>10</journal-min-files>
<journal-sync-transactional>false</journal-sync-transactional>
<journal-sync-non-transactional>false</journal-sync-non-transactional>
<connectors>
<netty-connector name="netty" socket-binding="messaging"/>
<netty-connector name="netty-throughput" socket-binding="messaging-throughput">
<param key="batch-delay" value="50"/>
</netty-connector>
<in-vm-connector name="in-vm" server-id="0"/>
</connectors>
<acceptors>
<netty-acceptor name="netty" socket-binding="messaging"/>
<netty-acceptor name="netty-throughput" socket-binding="messaging-throughput">
<param key="batch-delay" value="50"/>
<param key="direct-deliver" value="false"/>
</netty-acceptor>
<in-vm-acceptor name="in-vm" server-id="0"/>
</acceptors>
<security-settings>
<security-setting match="#">
<permission type="send" roles="guest"/>
<permission type="consume" roles="guest"/>
<permission type="createNonDurableQueue" roles="guest"/>
<permission type="deleteNonDurableQueue" roles="guest"/>
</security-setting>
</security-settings>
<address-settings>
<!--default for catch all-->
<address-setting match="#">
<dead-letter-address>jms.queue.DLQ</dead-letter-address>
<expiry-address>jms.queue.ExpiryQueue</expiry-address>
<redelivery-delay>0</redelivery-delay>
<max-size-bytes>104857600</max-size-bytes>
<page-size-bytes>10485760</page-size-bytes>
<address-full-policy>PAGE</address-full-policy>
<message-counter-history-day-limit>10</message-counter-history-day-limit>
</address-setting>
</address-settings>
<jms-connection-factories>
<connection-factory name="InVmConnectionFactory">
<connectors>
<connector-ref connector-name="in-vm"/>
</connectors>
<entries>
<entry name="java:/ConnectionFactory"/>
</entries>
</connection-factory>
<connection-factory name="RemoteConnectionFactory">
<connectors>
<connector-ref connector-name="netty"/>
</connectors>
<entries>
<entry name="java:jboss/exported/jms/RemoteConnectionFactory"/>
</entries>
</connection-factory>
<pooled-connection-factory name="hornetq-ra">
<transaction mode="xa"/>
<connectors>
<connector-ref connector-name="in-vm"/>
</connectors>
<entries>
<entry name="java:/JmsXA"/>
</entries>
<client-failure-check-period>2147483646</client-failure-check-period>
<connection-ttl>-1</connection-ttl>
<reconnect-attempts>-1</reconnect-attempts>
<confirmation-window-size>10485760</confirmation-window-size>
<consumer-window-size>10485760</consumer-window-size>
<block-on-durable-send>false</block-on-durable-send>
<block-on-non-durable-send>false</block-on-non-durable-send>
</pooled-connection-factory>
</jms-connection-factories>
<jms-destinations>
<jms-queue name="testQueue">
<entry name="queue/test"/>
<entry name="java:jboss/exported/jms/queue/test"/>
</jms-queue>
<jms-queue name="queue/com.demo.cxe.jms.CapImporting">
<entry name="queue/com.demo.cxe.jms.CapImporting"/>
</jms-queue>
<jms-queue name="queue/com.demo.cxe.jms.Aligner">
<entry name="queue/com.demo.cxe.jms.Aligner"/>
</jms-queue>
<jms-queue name="queue/com.demo.jms.FluxEventScheduling">
<entry name="queue/com.demo.jms.FluxEventScheduling"/>
</jms-queue>
<jms-queue name="queue/com.demo.everest.jms.CostCalculations">
<entry name="queue/com.demo.everest.jms.CostCalculations"/>
</jms-queue>
<jms-queue name="queue/com.demo.everest.jms.CapExporting">
<entry name="queue/com.demo.everest.jms.CapExporting"/>
</jms-queue>
<jms-queue name="queue/com.demo.everest.jms.FileUpload">
<entry name="queue/com.demo.everest.jms.FileUpload"/>
</jms-queue>
<jms-queue name="queue/com.demo.everest.jms.WorkflowAdditions">
<entry name="queue/com.demo.everest.jms.WorkflowAdditions"/>
</jms-queue>
<jms-queue name="queue/com.demo.everest.jms.ProjectUpdate">
<entry name="queue/com.demo.everest.jms.ProjectUpdate"/>
</jms-queue>
<jms-queue name="queue/com.demo.everest.jms.TermbaseDeletion">
<entry name="queue/com.demo.everest.jms.TermbaseDeletion"/>
</jms-queue>
<jms-queue name="queue/com.demo.everest.jms.TrashCompaction">
<entry name="queue/com.demo.everest.jms.TrashCompaction"/>
</jms-queue>
<jms-queue name="queue/com.demo.everest.jms.MailSender">
<entry name="queue/com.demo.everest.jms.MailSender"/>
</jms-queue>
<jms-queue name="queue/com.demo.everest.jms.NewCompany">
<entry name="queue/com.demo.everest.jms.NewCompany"/>
</jms-queue>
<jms-queue name="queue/com.demo.everest.jms.JobCancel">
<entry name="queue/com.demo.everest.jms.JobCancel"/>
</jms-queue>
<jms-queue name="queue/com.demo.everest.jms.WorkflowCancel">
<entry name="queue/com.demo.everest.jms.WorkflowCancel"/>
</jms-queue>
<jms-queue name="queue/com.demo.everest.jms.AddSourceFile">
<entry name="queue/com.demo.everest.jms.AddSourceFile"/>
</jms-queue>
<jms-queue name="queue/com.demo.cxe.jms.ForFileSystemSourceAdapter">
<entry name="queue/com.demo.cxe.jms.ForFileSystemSourceAdapter"/>
</jms-queue>
<jms-queue name="queue/com.demo.cxe.jms.ForFileSystemTargetAdapter">
<entry name="queue/com.demo.cxe.jms.ForFileSystemTargetAdapter"/>
</jms-queue>
<jms-queue name="queue/com.demo.cxe.jms.ForExtractor">
<entry name="queue/com.demo.cxe.jms.ForExtractor"/>
</jms-queue>
<jms-queue name="queue/com.demo.cxe.jms.ForMerger">
<entry name="queue/com.demo.cxe.jms.ForMerger"/>
</jms-queue>
<jms-queue name="queue/com.demo.cxe.jms.ForCapSourceAdapter">
<entry name="queue/com.demo.cxe.jms.ForCapSourceAdapter"/>
</jms-queue>
<jms-queue name="queue/com.demo.cxe.jms.ForCapTargetAdapter">
<entry name="queue/com.demo.cxe.jms.ForCapTargetAdapter"/>
</jms-queue>
<jms-queue name="queue/com.demo.cxe.jms.ForMsOfficeSourceAdapter">
<entry name="queue/com.demo.cxe.jms.ForMsOfficeSourceAdapter"/>
</jms-queue>
<jms-queue name="queue/com.demo.cxe.jms.ForMsOfficeTargetAdapter">
<entry name="queue/com.demo.cxe.jms.ForMsOfficeTargetAdapter"/>
</jms-queue>
<jms-queue name="queue/com.demo.cxe.jms.ForPdfSourceAdapter">
<entry name="queue/com.demo.cxe.jms.ForPdfSourceAdapter"/>
</jms-queue>
<jms-queue name="queue/com.demo.cxe.jms.ForPdfTargetAdapter">
<entry name="queue/com.demo.cxe.jms.ForPdfTargetAdapter"/>
</jms-queue>
<jms-queue name="queue/com.demo.cxe.jms.ForAdobeSourceAdapter">
<entry name="queue/com.demo.cxe.jms.ForAdobeSourceAdapter"/>
</jms-queue>
<jms-queue name="queue/com.demo.cxe.jms.ForAdobeTargetAdapter">
<entry name="queue/com.demo.cxe.jms.ForAdobeTargetAdapter"/>
</jms-queue>
<jms-queue name="queue/com.demo.cxe.jms.ForIdmlSourceAdapter">
<entry name="queue/com.demo.cxe.jms.ForIdmlSourceAdapter"/>
</jms-queue>
<jms-queue name="queue/com.demo.cxe.jms.ForIdmlTargetAdapter">
<entry name="queue/com.demo.cxe.jms.ForIdmlTargetAdapter"/>
</jms-queue>
<jms-queue name="queue/com.demo.cxe.jms.ForPassoloSourceAdapter">
<entry name="queue/com.demo.cxe.jms.ForPassoloSourceAdapter"/>
</jms-queue>
<jms-queue name="queue/com.demo.cxe.jms.ForPassoloTargetAdapter">
<entry name="queue/com.demo.cxe.jms.ForPassoloTargetAdapter"/>
</jms-queue>
<jms-queue name="queue/com.demo.cxe.jms.ForWindowsPESourceAdapter">
<entry name="queue/com.demo.cxe.jms.ForWindowsPESourceAdapter"/>
</jms-queue>
<jms-queue name="queue/com.demo.cxe.jms.ForWindowsPETargetAdapter">
<entry name="queue/com.demo.cxe.jms.ForWindowsPETargetAdapter"/>
</jms-queue>
<jms-queue name="queue/com.demo.cxe.jms.ForOpenOfficeSourceAdapter">
<entry name="queue/com.demo.cxe.jms.ForOpenOfficeSourceAdapter"/>
</jms-queue>
<jms-queue name="queue/com.demo.cxe.jms.ForOpenOfficeTargetAdapter">
<entry name="queue/com.demo.cxe.jms.ForOpenOfficeTargetAdapter"/>
</jms-queue>
<jms-queue name="queue/com.demo.cxe.jms.ForTeamSiteSourceAdapter">
<entry name="queue/com.demo.cxe.jms.ForTeamSiteSourceAdapter"/>
</jms-queue>
<jms-queue name="queue/com.demo.cxe.jms.ForTeamSiteTargetAdapter">
<entry name="queue/com.demo.cxe.jms.ForTeamSiteTargetAdapter"/>
</jms-queue>
<jms-queue name="queue/com.demo.cxe.jms.ForQuarkFrameSourceAdapter">
<entry name="queue/com.demo.cxe.jms.ForQuarkFrameSourceAdapter"/>
</jms-queue>
<jms-queue name="queue/com.demo.cxe.jms.ForQuarkFrameTargetAdapter">
<entry name="queue/com.demo.cxe.jms.ForQuarkFrameTargetAdapter"/>
</jms-queue>
<jms-queue name="queue/com.demo.cxe.jms.ForCopyFlowSourceAdapter">
<entry name="queue/com.demo.cxe.jms.ForCopyFlowSourceAdapter"/>
</jms-queue>
<jms-queue name="queue/com.demo.cxe.jms.ForCopyFlowTargetAdapter">
<entry name="queue/com.demo.cxe.jms.ForCopyFlowTargetAdapter"/>
</jms-queue>
<jms-queue name="queue/com.demo.cxe.jms.ForVignetteSourceAdapter">
<entry name="queue/com.demo.cxe.jms.ForVignetteSourceAdapter"/>
</jms-queue>
<jms-queue name="queue/com.demo.cxe.jms.ForVignetteTargetAdapter">
<entry name="queue/com.demo.cxe.jms.ForVignetteTargetAdapter"/>
</jms-queue>
<jms-queue name="queue/com.demo.cxe.jms.ForDatabaseTargetAdapter">
<entry name="queue/com.demo.cxe.jms.ForDatabaseTargetAdapter"/>
</jms-queue>
<jms-queue name="queue/com.demo.cxe.jms.ForMediasurfaceSourceAdapter">
<entry name="queue/com.demo.cxe.jms.ForMediasurfaceSourceAdapter"/>
</jms-queue>
<jms-queue name="queue/com.demo.cxe.jms.ForMediasurfaceTargetAdapter">
<entry name="queue/com.demo.cxe.jms.ForMediasurfaceTargetAdapter"/>
</jms-queue>
<jms-queue name="queue/com.demo.cxe.jms.ForCatalystSourceAdapter">
<entry name="queue/com.demo.cxe.jms.ForCatalystSourceAdapter"/>
</jms-queue>
<jms-queue name="queue/com.demo.cxe.jms.ForCatalystTargetAdapter">
<entry name="queue/com.demo.cxe.jms.ForCatalystTargetAdapter"/>
</jms-queue>
<jms-queue name="queue/com.demo.cxe.jms.ForServiceWareSourceAdapter">
<entry name="queue/com.demo.cxe.jms.ForServiceWareSourceAdapter"/>
</jms-queue>
<jms-queue name="queue/com.demo.cxe.jms.ForServiceWareTargetAdapter">
<entry name="queue/com.demo.cxe.jms.ForServiceWareTargetAdapter"/>
</jms-queue>
<jms-queue name="queue/com.demo.cxe.jms.ForDocumentumSourceAdapter">
<entry name="queue/com.demo.cxe.jms.ForDocumentumSourceAdapter"/>
</jms-queue>
<jms-queue name="queue/com.demo.cxe.jms.ForDocumentumTargetAdapter">
<entry name="queue/com.demo.cxe.jms.ForDocumentumTargetAdapter"/>
</jms-queue>
<jms-queue name="queue/com.demo.cxe.jms.ForTermAuditLog">
<entry name="queue/com.demo.cxe.jms.ForTermAuditLog"/>
</jms-queue>
<jms-topic name="testTopic">
<entry name="topic/test"/>
<entry name="java:jboss/exported/jms/topic/test"/>
</jms-topic>
</jms-destinations>
</hornetq-server>
</subsystem>
<subsystem xmlns="urn:jboss:domain:modcluster:1.1">
<mod-cluster-config advertise-socket="modcluster" connector="ajp" advertise-security-key="1234567890">
<dynamic-load-provider>
<load-metric type="busyness"/>
</dynamic-load-provider>
</mod-cluster-config>
</subsystem>
<subsystem xmlns="urn:jboss:domain:naming:1.2">
<remote-naming/>
</subsystem>
<subsystem xmlns="urn:jboss:domain:pojo:1.0"/>
<subsystem xmlns="urn:jboss:domain:remoting:1.1">
<connector name="remoting-connector" socket-binding="remoting" security-realm="ApplicationRealm"/>
</subsystem>
<subsystem xmlns="urn:jboss:domain:resource-adapters:1.0"/>
<subsystem xmlns="urn:jboss:domain:sar:1.0"/>
<subsystem xmlns="urn:jboss:domain:security:1.2">
<security-domains>
<security-domain name="other" cache-type="default">
<authentication>
<login-module code="Remoting" flag="optional">
<module-option name="password-stacking" value="useFirstPass"/>
</login-module>
<login-module code="RealmDirect" flag="required">
<module-option name="password-stacking" value="useFirstPass"/>
</login-module>
</authentication>
</security-domain>
<security-domain name="jboss-web-policy" cache-type="default">
<authorization>
<policy-module code="Delegating" flag="required"/>
</authorization>
</security-domain>
<security-domain name="jboss-ejb-policy" cache-type="default">
<authorization>
<policy-module code="Delegating" flag="required"/>
</authorization>
</security-domain>
</security-domains>
</subsystem>
<subsystem xmlns="urn:jboss:domain:threads:1.1"/>
<subsystem xmlns="urn:jboss:domain:transactions:1.2">
<core-environment>
<process-id>
<uuid/>
</process-id>
</core-environment>
<recovery-environment socket-binding="txn-recovery-environment" status-socket-binding="txn-status-manager"/>
<coordinator-environment default-timeout="300"/>
</subsystem>
<subsystem xmlns="urn:jboss:domain:web:1.4" default-virtual-server="default-host" native="false">
<configuration>
<jsp-configuration development="true"/>
</configuration>
<connector name="http" protocol="HTTP/1.1" scheme="http" socket-binding="http" redirect-port="443"/>
<!--
<connector name="https" protocol="HTTP/1.1" scheme="https" socket-binding="https" secure="true">
<ssl password="changeit" certificate-key-file="${jboss.server.config.dir}/demo.keystore"/>
</connector>
-->
<virtual-server name="default-host" enable-welcome-root="false">
<alias name="localhost"/>
<alias name="example.com"/>
</virtual-server>
</subsystem>
<subsystem xmlns="urn:jboss:domain:webservices:1.2">
<modify-wsdl-address>true</modify-wsdl-address>
<wsdl-host>${jboss.bind.address:127.0.0.1}</wsdl-host>
<endpoint-config name="Standard-Endpoint-Config"/>
<endpoint-config name="Recording-Endpoint-Config">
<pre-handler-chain name="recording-handlers" protocol-bindings="##SOAP11_HTTP ##SOAP11_HTTP_MTOM ##SOAP12_HTTP ##SOAP12_HTTP_MTOM">
<handler name="RecordingHandler" class="org.jboss.ws.common.invocation.RecordingServerHandler"/>
</pre-handler-chain>
</endpoint-config>
<client-config name="Standard-Client-Config"/>
</subsystem>
<subsystem xmlns="urn:jboss:domain:weld:1.0"/>
</profile>
<interfaces>
<interface name="management">
<inet-address value="${jboss.bind.address.management:127.0.0.1}"/>
</interface>
<interface name="public">
<inet-address value="${jboss.bind.address:0.0.0.0}"/>
</interface>
<!-- TODO - only show this if the jacorb subsystem is added -->
<interface name="unsecure">
<!--
~ Used for IIOP sockets in the standard configuration.
~ To secure JacORB you need to setup SSL
-->
<inet-address value="${jboss.bind.address.unsecure:127.0.0.1}"/>
</interface>
</interfaces>
<socket-binding-group name="standard-sockets" default-interface="public" port-offset="${jboss.socket.binding.port-offset:0}">
<socket-binding name="management-native" interface="management" port="${jboss.management.native.port:9999}"/>
<socket-binding name="management-http" interface="management" port="${jboss.management.http.port:9990}"/>
<!--
<socket-binding name="management-https" interface="management" port="${jboss.management.https.port:9443}"/>
-->
<socket-binding name="ajp" port="8009"/>
<socket-binding name="http" port="8080"/>
<!--
<socket-binding name="https" port="443"/>
-->
<socket-binding name="messaging" port="5445"/>
<socket-binding name="messaging-throughput" port="5455"/>
<socket-binding name="jgroups-mping" port="0" multicast-address="${jboss.default.multicast.address:230.0.0.4}" multicast-port="45700"/>
<socket-binding name="jgroups-tcp" port="7600"/>
<socket-binding name="jgroups-tcp-fd" port="57600"/>
<socket-binding name="jgroups-udp" port="55200" multicast-address="${jboss.default.multicast.address:230.0.0.4}" multicast-port="45688"/>
<socket-binding name="jgroups-udp-fd" port="54200"/>
<socket-binding name="modcluster" port="0" multicast-address="224.0.1.105" multicast-port="23364"/>
<socket-binding name="remoting" port="4447"/>
<socket-binding name="txn-recovery-environment" port="4712"/>
<socket-binding name="txn-status-manager" port="4713"/>
<!--
<outbound-socket-binding name="mail-smtp">
<remote-destination host="mail.domain.com" port="25"/>
</outbound-socket-binding>
-->
</socket-binding-group>
</server>
httpd.conf:
#
# This is the main Apache HTTP server configuration file. It contains the
# configuration directives that give the server its instructions.
# See <URL:http://httpd.apache.org/docs/2.2> for detailed information.
# In particular, see
# <URL:http://httpd.apache.org/docs/2.2/mod/directives.html>
# for a discussion of each configuration directive.
#
# Do NOT simply read the instructions in here without understanding
# what they do. They're here only as hints or reminders. If you are unsure
# consult the online docs. You have been warned.
#
# Configuration and logfile names: If the filenames you specify for many
# of the server's control files begin with "/" (or "drive:/" for Win32), the
# server will use that explicit path. If the filenames do *not* begin
# with "/", the value of ServerRoot is prepended -- so "logs/foo_log"
# with ServerRoot set to "D:/welocalize/software/JBoss/httpd-2.2" will be interpreted by the
# server as "D:/welocalize/software/JBoss/httpd-2.2/logs/foo_log".
#
# ServerRoot: The top of the directory tree under which the server's
# configuration, error, and log files are kept.
#
# Do not add a slash at the end of the directory path. If you point
# ServerRoot at a non-local disk, be sure to point the LockFile directive
# at a local disk. If you wish to share the same ServerRoot for multiple
# httpd daemons, you will need to change at least LockFile and PidFile.
#
ServerRoot "D:/welocalize/software/JBoss/httpd-2.2"
#
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, instead of the default. See also the <VirtualHost>
# directive.
#
# Change this to Listen on specific IP addresses as shown below to
# prevent Apache from glomming onto all bound IP addresses.
#
#Listen 12.34.56.78:80
Listen 8888
#
# Dynamic Shared Object (DSO) Support
#
# To be able to use the functionality of a module which was built as a DSO you
# have to place corresponding `LoadModule' lines at this location so the
# directives contained in it are actually available _before_ they are used.
# Statically compiled modules (those listed by `httpd -l') do not need
# to be loaded here.
#
# Example:
# LoadModule foo_module modules/mod_foo.so
#
LoadModule actions_module modules/mod_actions.so
LoadModule alias_module modules/mod_alias.so
LoadModule asis_module modules/mod_asis.so
LoadModule auth_basic_module modules/mod_auth_basic.so
#LoadModule auth_digest_module modules/mod_auth_digest.so
#LoadModule authn_alias_module modules/mod_authn_alias.so
#LoadModule authn_anon_module modules/mod_authn_anon.so
#LoadModule authn_dbd_module modules/mod_authn_dbd.so
#LoadModule authn_dbm_module modules/mod_authn_dbm.so
LoadModule authn_default_module modules/mod_authn_default.so
LoadModule authn_file_module modules/mod_authn_file.so
#LoadModule authnz_ldap_module modules/mod_authnz_ldap.so
#LoadModule authz_dbm_module modules/mod_authz_dbm.so
LoadModule authz_default_module modules/mod_authz_default.so
LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
LoadModule authz_host_module modules/mod_authz_host.so
#LoadModule authz_owner_module modules/mod_authz_owner.so
LoadModule authz_user_module modules/mod_authz_user.so
LoadModule autoindex_module modules/mod_autoindex.so
#LoadModule cache_module modules/mod_cache.so
#LoadModule cern_meta_module modules/mod_cern_meta.so
LoadModule cgi_module modules/mod_cgi.so
#LoadModule charset_lite_module modules/mod_charset_lite.so
#LoadModule dav_module modules/mod_dav.so
#LoadModule dav_fs_module modules/mod_dav_fs.so
#LoadModule dav_lock_module modules/mod_dav_lock.so
#LoadModule dbd_module modules/mod_dbd.so
#LoadModule deflate_module modules/mod_deflate.so
LoadModule dir_module modules/mod_dir.so
#LoadModule disk_cache_module modules/mod_disk_cache.so
#LoadModule dumpio_module modules/mod_dumpio.so
LoadModule env_module modules/mod_env.so
#LoadModule expires_module modules/mod_expires.so
#LoadModule ext_filter_module modules/mod_ext_filter.so
#LoadModule file_cache_module modules/mod_file_cache.so
#LoadModule filter_module modules/mod_filter.so
#LoadModule headers_module modules/mod_headers.so
#LoadModule ident_module modules/mod_ident.so
#LoadModule imagemap_module modules/mod_imagemap.so
LoadModule include_module modules/mod_include.so
#LoadModule info_module modules/mod_info.so
LoadModule isapi_module modules/mod_isapi.so
#LoadModule ldap_module modules/mod_ldap.so
#LoadModule logio_module modules/mod_logio.so
LoadModule log_config_module modules/mod_log_config.so
#LoadModule log_forensic_module modules/mod_log_forensic.so
#LoadModule mem_cache_module modules/mod_mem_cache.so
LoadModule mime_module modules/mod_mime.so
#LoadModule mime_magic_module modules/mod_mime_magic.so
LoadModule negotiation_module modules/mod_negotiation.so
#LoadModule proxy_module modules/mod_proxy.so
#LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
#LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
#LoadModule proxy_connect_module modules/mod_proxy_connect.so
#LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
#LoadModule proxy_http_module modules/mod_proxy_http.so
#LoadModule rewrite_module modules/mod_rewrite.so
LoadModule setenvif_module modules/mod_setenvif.so
#LoadModule speling_module modules/mod_speling.so
#LoadModule ssl_module modules/mod_ssl.so
#LoadModule status_module modules/mod_status.so
#LoadModule substitute_module modules/mod_substitute.so
#LoadModule unique_id_module modules/mod_unique_id.so
#LoadModule userdir_module modules/mod_userdir.so
#LoadModule usertrack_module modules/mod_usertrack.so
#LoadModule version_module modules/mod_version.so
#LoadModule vhost_alias_module modules/mod_vhost_alias.so
<IfModule !mpm_netware_module>
<IfModule !mpm_winnt_module>
#
# If you wish httpd to run as a different user or group, you must run
# httpd as root initially and it will switch.
#
# User/Group: The name (or #number) of the user/group to run httpd as.
# It is usually good practice to create a dedicated user and group for
# running httpd, as with most system services.
#
User daemon
Group daemon
</IfModule>
</IfModule>
# 'Main' server configuration
#
# The directives in this section set up the values used by the 'main'
# server, which responds to any requests that aren't handled by a
# <VirtualHost> definition. These values also provide defaults for
# any <VirtualHost> containers you may define later in the file.
#
# All of these directives may appear inside <VirtualHost> containers,
# in which case these default settings will be overridden for the
# virtual host being defined.
#
#
# ServerAdmin: Your address, where problems with the server should be
# e-mailed. This address appears on some server-generated pages, such
# as error documents. e.g. admin@your-domain.com
#
ServerAdmin leo@localhost.localdomain
#
# ServerName gives the name and port that the server uses to identify itself.
# This can often be determined automatically, but we recommend you specify
# it explicitly to prevent problems during startup.
#
# If your host doesn't have a registered DNS name, enter its IP address here.
#
#ServerName 10.10.2.7:8888
#
# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
#
DocumentRoot "D:/welocalize/software/JBoss/httpd-2.2/htdocs"
#
# Each directory to which Apache has access can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories).
#
# First, we configure the "default" to be a very restrictive set of
# features.
#
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
</Directory>
#
# Note that from this point forward you must specifically allow
# particular features to be enabled - so if something's not working as
# you might expect, make sure that you have specifically enabled it
# below.
#
#
# This should be changed to whatever you set DocumentRoot to.
#
<Directory "D:/welocalize/software/JBoss/httpd-2.2/htdocs">
#
# Possible values for the Options directive are "None", "All",
# or any combination of:
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
# The Options directive is both complicated and important. Please see
# http://httpd.apache.org/docs/2.2/mod/core.html#options
# for more information.
#
Options Indexes FollowSymLinks
#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
#
AllowOverride None
#
# Controls who can get stuff from this server.
#
Order allow,deny
Allow from all
</Directory>
#
# DirectoryIndex: sets the file that Apache will serve if a directory
# is requested.
#
<IfModule dir_module>
DirectoryIndex index.html
</IfModule>
#
# The following lines prevent .htaccess and .htpasswd files from being
# viewed by Web clients.
#
<FilesMatch "^\.ht">
Order allow,deny
Deny from all
Satisfy All
</FilesMatch>
#
# ErrorLog: The location of the error log file.
# If you do not specify an ErrorLog directive within a <VirtualHost>
# container, error messages relating to that virtual host will be
# logged here. If you *do* define an error logfile for a <VirtualHost>
# container, that host's errors will be logged there and not here.
#
ErrorLog "logs/error_log"
#
# LogLevel: Control the number of messages logged to the error_log.
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
#
LogLevel warn
<IfModule log_config_module>
#
# The following directives define some format nicknames for use with
# a CustomLog directive (see below).
#
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
<IfModule logio_module>
# You need to enable mod_logio.c to use %I and %O
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
</IfModule>
#
# The location and format of the access logfile (Common Logfile Format).
# If you do not define any access logfiles within a <VirtualHost>
# container, they will be logged here. Contrariwise, if you *do*
# define per-<VirtualHost> access logfiles, transactions will be
# logged therein and *not* in this file.
#
CustomLog "logs/access_log" common
#
# If you prefer a logfile with access, agent, and referer information
# (Combined Logfile Format) you can use the following directive.
#
#CustomLog "logs/access_log" combined
</IfModule>
<IfModule alias_module>
#
# Redirect: Allows you to tell clients about documents that used to
# exist in your server's namespace, but do not anymore. The client
# will make a new request for the document at its new location.
# Example:
# Redirect permanent /foo http://localhost/bar
#
# Alias: Maps web paths into filesystem paths and is used to
# access content that does not live under the DocumentRoot.
# Example:
# Alias /webpath /full/filesystem/path
#
# If you include a trailing / on /webpath then the server will
# require it to be present in the URL. You will also likely
# need to provide a <Directory> section to allow access to
# the filesystem path.
#
# ScriptAlias: This controls which directories contain server scripts.
# ScriptAliases are essentially the same as Aliases, except that
# documents in the target directory are treated as applications and
# run by the server when requested rather than as documents sent to the
# client. The same rules about trailing "/" apply to ScriptAlias
# directives as to Alias.
#
ScriptAlias /cgi-bin/ "D:/welocalize/software/JBoss/httpd-2.2/cgi-bin/"
</IfModule>
<IfModule cgid_module>
#
# ScriptSock: On threaded servers, designate the path to the UNIX
# socket used to communicate with the CGI daemon of mod_cgid.
#
#Scriptsock logs/cgisock
</IfModule>
#
# "D:/welocalize/software/JBoss/httpd-2.2/cgi-bin" should be changed to whatever your ScriptAliased
# CGI directory exists, if you have that configured.
#
<Directory "D:/welocalize/software/JBoss/httpd-2.2/cgi-bin">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
#
# DefaultType: the default MIME type the server will use for a document
# if it cannot otherwise determine one, such as from filename extensions.
# If your server contains mostly text or HTML documents, "text/plain" is
# a good value. If most of your content is binary, such as applications
# or images, you may want to use "application/octet-stream" instead to
# keep browsers from trying to display binary files as though they are
# text.
#
DefaultType text/plain
<IfModule mime_module>
#
# TypesConfig points to the file containing the list of mappings from
# filename extension to MIME-type.
#
TypesConfig conf/mime.types
#
# AddType allows you to add to or override the MIME configuration
# file specified in TypesConfig for specific file types.
#
#AddType application/x-gzip .tgz
#
# AddEncoding allows you to have certain browsers uncompress
# information on the fly. Note: Not all browsers support this.
#
#AddEncoding x-compress .Z
#AddEncoding x-gzip .gz .tgz
#
# If the AddEncoding directives above are commented-out, then you
# probably should define those extensions to indicate media types:
#
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
#
# AddHandler allows you to map certain file extensions to "handlers":
# actions unrelated to filetype. These can be either built into the server
# or added with the Action directive (see below)
#
# To use CGI scripts outside of ScriptAliased directories:
# (You will also need to add "ExecCGI" to the "Options" directive.)
#
#AddHandler cgi-script .cgi
# For type maps (negotiated resources):
#AddHandler type-map var
#
# Filters allow you to process content before it is sent to the client.
#
# To parse .shtml files for server-side includes (SSI):
# (You will also need to add "Includes" to the "Options" directive.)
#
#AddType text/html .shtml
#AddOutputFilter INCLUDES .shtml
</IfModule>
#
# The mod_mime_magic module allows the server to use various hints from the
# contents of the file itself to determine its type. The MIMEMagicFile
# directive tells the module where the hint definitions are located.
#
#MIMEMagicFile conf/magic
#
# Customizable error responses come in three flavors:
# 1) plain text 2) local redirects 3) external redirects
#
# Some examples:
#ErrorDocument 500 "The server made a boo boo."
#ErrorDocument 404 /missing.html
#ErrorDocument 404 "/cgi-bin/missing_handler.pl"
#ErrorDocument 402 http://localhost/subscription_info.html
#
#
# MaxRanges: Maximum number of Ranges in a request before
# returning the entire resource, or 0 for unlimited
# Default setting is to accept 200 Ranges
#MaxRanges 0
#
# EnableMMAP and EnableSendfile: On systems that support it,
# memory-mapping or the sendfile syscall is used to deliver
# files. This usually improves server performance, but must
# be turned off when serving from networked-mounted
# filesystems or if support for these functions is otherwise
# broken on your system.
#
#EnableMMAP off
#EnableSendfile off
# Supplemental configuration
#
# The configuration files in the conf/extra/ directory can be
# included to add extra features or to modify the default configuration of
# the server, or you may simply copy their contents here and change as
# necessary.
# Server-pool management (MPM specific)
#Include conf/extra/httpd-mpm.conf
# Multi-language error messages
#Include conf/extra/httpd-multilang-errordoc.conf
# Fancy directory listings
#Include conf/extra/httpd-autoindex.conf
# Language settings
#Include conf/extra/httpd-languages.conf
# User home directories
#Include conf/extra/httpd-userdir.conf
# Real-time info on requests and configuration
#Include conf/extra/httpd-info.conf
# Virtual hosts
#Include conf/extra/httpd-vhosts.conf
# Local access to the Apache HTTP Server Manual
#Include conf/extra/httpd-manual.conf
# Distributed authoring and versioning (WebDAV)
#Include conf/extra/httpd-dav.conf
# Various default settings
#Include conf/extra/httpd-default.conf
# Secure (SSL/TLS) connections
#Include conf/extra/httpd-ssl.conf
#
# Note: The following must must be present to support
# starting without SSL on platforms with no /dev/random equivalent
# but a statically compiled-in mod_ssl.
#
<IfModule ssl_module>
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
</IfModule>
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
LoadModule proxy_http_module modules/mod_proxy_http.so
LoadModule proxy_cluster_module modules/mod_proxy_cluster.so
LoadModule manager_module modules/mod_manager.so
LoadModule slotmem_module modules/mod_slotmem.so
LoadModule advertise_module modules/mod_advertise.so
# MOD_CLUSTER_ADDS
# Adjust to you hostname and subnet.
<IfModule manager_module>
Listen 10.10.2.7:8888
ManagerBalancerName other-server-group
<VirtualHost *:8888>
<Location />
Order deny,allow
Deny from all
Allow from all
</Location>
KeepAliveTimeout 300
MaxKeepAliveRequests 0
#ServerAdvertise on http://127.0.0.1:6666
AdvertiseFrequency 5
#AdvertiseSecurityKey secret
#AdvertiseGroup 224.0.1.105:23364
EnableMCPMReceive
<Location /mod_cluster_manager>
SetHandler mod_cluster-manager
Order deny,allow
Deny from all
Allow from all
</Location>
</VirtualHost>
</IfModule>