ActiveMQ with JBoss 7.2.0.Alpha1 / EAP 6.1.0.Alpha1

Update 26.8.2013: Described steps also work with Wildfly Alpha 4. Tested the described configuration with urn:jboss:domain:resource-adapters:1.1 + mdb part in the standalone.xml and the latest rar. —- Working with an external ActiveMQ broker has become quite easy since my last attempts in the beginning of JBoss AS7. Here a short howto how to get it running

ActiveMQ with JBoss 7.2.0.Alpha1 / EAP 6.1.0.Alpha1 Read More »

JBoss Login Configuration

Here a short example for a security-domain that has to be configured in the urn:jboss:domain:security subsystem: <security-domain name=”mysecuritydomain” cache-type=”default”> <authentication> <login-module code=”org.jboss.security.auth.spi.DatabaseServerLoginModule” flag=”required”> <module-option name=”dsJndiName” value=”java:jboss/datasources/ExampleDS” /> <module-option name=”principalsQuery” value=”select u.password from users u where u.name=?” /> <module-option name=”rolesQuery” value=”select r.name as rolename, ‘Roles’ as rolegroup from users u, roles r, users_roles ur where ur.user_id=u.id

JBoss Login Configuration Read More »

Bonding and Bridging

I set up a server with two network interfaces and wanted to use load balancing and bridging with cheap a cheap non 802.3ad capable switch. Thats why I chose mode 5. See https://help.ubuntu.com/community/UbuntuBonding for further information about bonding modes. Here is my /etc/network/interfaces file which is working fine till now: auto lo iface lo inet

Bonding and Bridging Read More »