I finally am able to run jboss through my jboss script in /etc/init.d/
jboss (located in /etc/init.d/):
Set up all the permissions and run levels like this:
When I try to start up like this:
$ /etc/init.d/./jboss start
It works! :
Please take note of the
JAVA and CLASSPATH variables values...
Breaks when I do:
$ service jboss start
This code block here (line 261 in $JBOSS_HOME/bin/run.sh):
Please note the differences in the JAVA and CLASSPATH variables compared to when I ran it manually using ./jboss start under /etc/init.d/.
I got my script working underneath /etc/init.d/jboss
but not under "service jboss start"
Would extremely be grateful if someone could help me...
-James