I found the solution for one of the porblems, DefaultPartiction service failure.
Edit your run.sh script as following:
1. Add the following entry before the Jboss specific properties entry:
# fix for IPv6 bug (AIX cannot bind a socket to an IPv6 address)
JAVA_OPTS1="-Djava.net.preferIPv4Stack=true"
2. Edit the JBoss specific properties entry as following:
# Setup JBoss sepecific properties
# JAVA_OPTS="-Dprogram.name=$PROGNAME $JAVA_OPTS"
JAVA_OPTS="-Dprogram.name=$PROGNAME $JAVA_OPTS $JAVA_OPTS1"
Restart the server using this run script.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3997996#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...