vote up 1 vote down star

Hello Everyone,

I have Jboss 5 installed/configured. I would like the ability to have Jboss auto start when my VM boots up. I see in my Jboss bin directory I have a startup script jboss_init_redhat.sh

I am assuming I have to get that script into my /etc/rc.d/init.d/jboss file

Then I am stuck, what is my next step?

Thank you for helping a beginner

flag

0% accept rate
Jared - can you not edit (if needed) and copy the jboss_init_redhat.sh file in yourself? Is your VM redhat? – martin clayton Oct 21 at 21:24
Hi Martin, thanks for your response. Yes, I guess I have to copy the script into the /etc/rc.d/init.d/jboss file.....?? Yes my VM is RHEL. I am just not sure what to do after I do copy that script.. or do I have anything else to do? Sorry I am trying to teach myself this on the fly... – Jared Oct 22 at 1:11

2 Answers

vote up 0 vote down

The stock init script is very primitive; here's my take at a better one: https://jira.jboss.org/jira/browse/JBPAPP-3194

link|flag
vote up 3 vote down

According to How do I Start JBoss on boot with Linux? on JBoss Community Wiki, your task is to:

  • create a user for JBoss (recommended) so that JBoss can be restricted to accessing only the files and system resources that it has permission to access via the "jboss" user.
  • create a script called /etc/rc.d/init.d/jboss
  • create a link called /etc/rc3.d/S84jboss
    • optionally /etc/rc5.d/S84jboss and /etc/rc4.d/S84jboss
  • create a link called /etc/rc6.d/K15jboss
    • create the K15 link in /etc/rc1.d, /etc/rc2.d, /etc/rc0.d

For the 2nd step, you can indeed use the jboss_init_redhat.sh file that ships with JBoss. For more information, check the link given above, it details each step.

link|flag
Thank you. When they say "create a link called /etc/rc3.d/S84jboss" does that mean I have to first create a file S84jboss THEN create the link? – Jared Oct 22 at 15:06
1  
No, /etc/rc3.d/S84jboss is the name of the link. Actually, cd into /etc/rc3.d and type ln -s ../init.d/jboss S84jboss – Pascal Thivent Oct 22 at 15:33
Works. Thank you Pascal!! – Jared Oct 22 at 17:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.