Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Archived » Test and Performance Tools Platform (TPTP) » jboss4.2.3 error(jboss error)
jboss4.2.3 error [message #515757] Sat, 20 February 2010 14:19 Go to next message
JitendraDash  is currently offline JitendraDash Friend
Messages: 1
Registered: February 2010
Junior Member
Hello friends , i am facing problem my app server
jbos-4.2.3
process id have been killed after every one hour, i am not getting understand. please help

thanks
jitendra


while true; do
if [ "x$LAUNCH_JBOSS_IN_BACKGROUND" = "x" ]; then
# Execute the JVM in the foreground
"$JAVA" $JAVA_OPTS \
-Djava.endorsed.dirs="$JBOSS_ENDORSED_DIRS" \
-classpath "$JBOSS_CLASSPATH" \
org.jboss.Main "$@"
JBOSS_STATUS=$?
else
# Execute the JVM in the background
"$JAVA" $JAVA_OPTS \
-Djava.endorsed.dirs="$JBOSS_ENDORSED_DIRS" \
-classpath "$JBOSS_CLASSPATH" \
org.jboss.Main "$@" &
JBOSS_PID=$!
# Trap common signals and relay them to the jboss process
trap "kill -HUP $JBOSS_PID" HUP
trap "kill -TERM $JBOSS_PID" INT
trap "kill -QUIT $JBOSS_PID" QUIT
trap "kill -PIPE $JBOSS_PID" PIPE
trap "kill -TERM $JBOSS_PID" TERM
# Wait until the background process exits
WAIT_STATUS=128
while [ "$WAIT_STATUS" -ge 128 ]; do
wait $JBOSS_PID 2>/dev/null
Re: jboss4.2.3 error [message #516064 is a reply to message #515757] Mon, 22 February 2010 11:14 Go to previous message
Eugene Chan is currently offline Eugene ChanFriend
Messages: 287
Registered: July 2009
Senior Member
Hi

Were you profiling the app server? if so, any error log in the server?

Please provide more information on how you started the target server in
profile mode and how it failed? Also please provide the filter configuration
if available.

Eugene

"JitendraDash" <dashjitendra@gmail.com> wrote in message
news:hlor0u$tde$1@build.eclipse.org...
> Hello friends , i am facing problem my app server
> jbos-4.2.3 process id have been killed after every one hour, i am not
> getting understand. please help
>
> thanks jitendra
>
>
> while true; do
> if [ "x$LAUNCH_JBOSS_IN_BACKGROUND" = "x" ]; then
> # Execute the JVM in the foreground
> "$JAVA" $JAVA_OPTS \
> -Djava.endorsed.dirs="$JBOSS_ENDORSED_DIRS" \
> -classpath "$JBOSS_CLASSPATH" \
> org.jboss.Main "$@"
> JBOSS_STATUS=$?
> else
> # Execute the JVM in the background
> "$JAVA" $JAVA_OPTS \
> -Djava.endorsed.dirs="$JBOSS_ENDORSED_DIRS" \
> -classpath "$JBOSS_CLASSPATH" \
> org.jboss.Main "$@" &
> JBOSS_PID=$!
> # Trap common signals and relay them to the jboss process
> trap "kill -HUP $JBOSS_PID" HUP
> trap "kill -TERM $JBOSS_PID" INT
> trap "kill -QUIT $JBOSS_PID" QUIT
> trap "kill -PIPE $JBOSS_PID" PIPE
> trap "kill -TERM $JBOSS_PID" TERM
> # Wait until the background process exits
> WAIT_STATUS=128
> while [ "$WAIT_STATUS" -ge 128 ]; do
> wait $JBOSS_PID 2>/dev/null
Previous Topic:Custom rules in TPTP 4.6.1
Next Topic:Adapter Configuration Editor: where is it?
Goto Forum:
  


Current Time: Wed Sep 25 15:50:27 GMT 2024

Powered by FUDForum. Page generated in 0.03886 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top