David Ghedini
How to Install JBoss 6 on CentOS
This post will cover installing JBoss 6.0 on CentOS 5.x.
(If you are looking to install JBoss 7, please see my post here: http://www.davidghedini.com/pg/entry/install_jboss_7_on_centos)
We'll also set up JBoss to run as a service, as well as secure the JMX and Web Service consoles
While there are similarities to JBoss 5.1 installation, the file locations have changed in some instances
Here is an outline of the steps we will follow:
1. Download and Install the Java Development Kit (JDK)
2. Download and Install JBoss 6.0 Application Server
3. Create the user, jboss, who will own and run JBoss
4. Set the required JAVA_HOME and JBOSS_HOME paths
5. Create a start/stop/restart script for JBoss
6. Configure JBoss to run as a service
7. Access the JBoss Admin console
8. Change the JBoss Admin Password
9. Secure the JMX Console
10. Securing the Web Service Console
11. Set memory parameters for JBoss using JAVA_OPTS
12. Configure JBoss to run on port 80
You can download the JDK here: http://www.oracle.com/technetwork/java/javase/downloads/index.html
I'm using JDK 6, update 24, the latest as of this post. The JDK is specific to 32 and 64 bit versions.
My CentOS box is 64 bit, so I'll need: jdk-6u24-linux-x64.bin.
If you are on 32 bit, you'll need: jdk-6u24-linux-i586.bin
Download the appropriate JDK and save it to a directory. I'm saving it to /root.
Move (mv) or copy (cp) the file to the /opt directory:
[root@sv2 ~]# mv jdk-6u24-linux-x64.bin /opt/jdk-6u24-linux-x64.bin
Create the directory /usr/java.
[root@sv2 ~]# mkdir /usr/java
Change to the /usr/java directory we created and install the JDK using 'sh /opt/jdk-6u24-linux-x64.bin'
[root@sv2 ~]# cd /usr/java [root@sv2 java]# sh /opt/jdk-6u24-linux-x64.bin
We now have the JDK installed at /usr/java/jdk1.6.0_24. We'll use this for our JAVA_HOME a bit later in step
Download jboss-6.0.0.Final.zip at http://sourceforge.net/projects/jboss/files/JBoss/jboss-6.0.0.Final/ or use wget:
[root@sv2 ~]# wget http://sourceforge.net/projects/jboss/files/JBoss/JBoss-6.0.0.Final/jboss-as-distribution-6.0.0.Final.zip/download . . . 100%[======================================>] 181,267,148 816K/s in 3m 31s 2011-03-13 00:56:44 (839 KB/s) - `jboss-as-distribution-6.0.0.Final.zip' saved [181267148/181267148]
Move (mv) or copy (cp) the file to /usr/share/jboss-6.0.0.Final.zip.
[root@sv2 ~]# mv jboss-as-distribution-6.0.0.Final.zip /usr/share/jboss-as-distribution-6.0.0.Final.zip
Change to the /usr/share directory and unzip the file:
[root@sv2 ~]# cd /usr/share [root@sv2 share]# unzip -q jboss-as-distribution-6.0.0.Final.zip
The unzip will create the following directory: /usr/share/jboss-6.0.0.Final
This directory will be our JBOSS_HOME, which we will use below in Step 4.
Since we will want to run JBoss as a non-root user with minimal privileges, we'll create a user, jboss, who will own the JBoss files and JBoss will run under his account.
To do this, we can need to the following.
Create a new group, jboss, and then create the user jboss and add the user to the jboss group.
[root@sv2 ~]# groupadd jboss [root@sv2 ~]# useradd -s /bin/bash -g jboss jboss
Change ownership of the JBoss home directory, /usr/share/jboss-6.0.0.Final so all files are owned by the user jboss we created.
[root@sv2 ~]# chown -Rf jboss.jboss /usr/share/jboss-6.0.0.Final/
We no need to set the JAVA_HOME and JBOSS_HOME.
The JAVA_HOME is where we installed the JDK above, /usr/java/jdk1.6.0_24, and the JBOSS_HOME is where we installed JBoss above /usr/share/jboss-6.0.0.Final.
Add the following to the jboss users .bash_profile:
JAVA_HOME=/usr/java/jdk1.6.0_24 export JAVA_HOME PATH=$JAVA_HOME/bin:$PATH export PATH JBOSS_HOME=/usr/share/jboss-6.0.0.Final export JBOSS_HOME
To set the JAVA_HOME for users, we add this to the user ~/.bashrc or ~/.bash_profile of the user. We can also add it /etc/profile and then source it to give to all users.
JAVA_HOME=/usr/java/jdk1.6.0_24 export JAVA_HOME PATH=$JAVA_HOME/bin:$PATH export PATH
Once you have added the above to ~/.bash_profile or ~/.bashrc, you should su to the user jboss and verify that the JAVA_HOME and JBOSS_HOME are set correctly.
[root@sv2 ~]# su jboss [jboss@sv2 ~]# echo $JAVA_HOME /usr/java/jdk1.6.0_24 [jboss@sv2 ~]# echo $JBOSS_HOME /usr/share/jboss-6.0.0.Final
For our JBoss script we will simply copy the existing jboss_init_redhat.sh script located at at /usr/share/jboss-6.0.0.Final/bin, copy it to /etc/init.d and rename it to 'jboss':
So, as root:
[root@sv2 ~]# cd /usr/share/jboss-6.0.0.Final/bin [root@sv2 bin]# cp jboss_init_redhat.sh /etc/init.d/jboss
In the jboss script (shown completed below), make the following changes:
1. Add lines 3,4, and 5:
# description: JBoss Start Stop Restart
# processname: jboss
# chkconfig: 234 20 80
2. Line 22, Set the JBOSS_HOME to where we unpacked JBoss in step 2 above:
JBOSS_HOME=${JBOSS_HOME:-"/usr/share/jboss-6.0.0.Final"}
3. Line 28. Set the JAVA_HOME to where we installed the JDK in step 1 above:
JAVAPTH=${JAVAPTH:-"/usr/java/jdk1.6.0_24"}
4. Add line 34, which sets the JBOSS_HOST to 0.0.0.0, allowing JBoss to bind to any IP.
JBOSS_HOST="0.0.0.0"
#!/bin/sh
#
# description: JBoss Start Stop Restart
# processname: jboss6
# chkconfig: 234 20 80
#
# $Id: jboss_init_redhat.sh 81068 2008-11-14 15:14:35Z dimitris@jboss.org $
#
# JBoss Control Script
#
# To use this script run it as root - it will switch to the specified user
#
# Here is a little (and extremely primitive) startup/shutdown script
# for RedHat systems. It assumes that JBoss lives in /usr/local/jboss,
# it's run by user 'jboss' and JDK binaries are in /usr/local/jdk/bin.
# All this can be changed in the script itself.
#
# Either modify this script for your requirements or just ensure that
# the following variables are set correctly before calling the script.
#define where jboss is - this is the directory containing directories log, bin, conf etc
JBOSS_HOME=${JBOSS_HOME:-"/usr/share/jboss-6.0.0.Final"}
#define the user under which jboss will run, or use 'RUNASIS' to run as the current user
JBOSS_USER=${JBOSS_USER:-"jboss"}
#make sure java is in your path
JAVAPTH=${JAVAPTH:-"/usr/java/jdk1.6.0_24"}
#configuration to use, usually one of 'minimal', 'default', 'all'
JBOSS_CONF=${JBOSS_CONF:-"default"}
#if JBOSS_HOST specified, use -b to bind jboss services to that address
JBOSS_HOST="0.0.0.0"
JBOSS_BIND_ADDR=${JBOSS_HOST:+"-b $JBOSS_HOST"}
#define the classpath for the shutdown class
JBOSSCP=${JBOSSCP:-"$JBOSS_HOME/bin/shutdown.jar:$JBOSS_HOME/client/jnet.jar"}
#define the script to use to start jboss
JBOSSSH=${JBOSSSH:-"$JBOSS_HOME/bin/run.sh -c $JBOSS_CONF $JBOSS_BIND_ADDR"}
if [ "$JBOSS_USER" = "RUNASIS" ]; then
SUBIT=""
else
SUBIT="su - $JBOSS_USER -c "
fi
if [ -n "$JBOSS_CONSOLE" -a ! -d "$JBOSS_CONSOLE" ]; then
# ensure the file exists
touch $JBOSS_CONSOLE
if [ ! -z "$SUBIT" ]; then
chown $JBOSS_USER $JBOSS_CONSOLE
fi
fi
if [ -n "$JBOSS_CONSOLE" -a ! -f "$JBOSS_CONSOLE" ]; then
echo "WARNING: location for saving console log invalid: $JBOSS_CONSOLE"
echo "WARNING: ignoring it and using /dev/null"
JBOSS_CONSOLE="/dev/null"
fi
#define what will be done with the console log
JBOSS_CONSOLE=${JBOSS_CONSOLE:-"/dev/null"}
JBOSS_CMD_START="cd $JBOSS_HOME/bin; $JBOSSSH"
JBOSS_CMD_STOP=${JBOSS_CMD_STOP:-"java -classpath $JBOSSCP org.jboss.Shutdown --shutdown"}
if [ -z "`echo $PATH | grep $JAVAPTH`" ]; then
export PATH=$PATH:$JAVAPTH
fi
if [ ! -d "$JBOSS_HOME" ]; then
echo JBOSS_HOME does not exist as a valid directory : $JBOSS_HOME
exit 1
fi
echo JBOSS_CMD_START = $JBOSS_CMD_START
case "$1" in
start)
cd $JBOSS_HOME/bin
if [ -z "$SUBIT" ]; then
eval $JBOSS_CMD_START >${JBOSS_CONSOLE} 2>&1 &
else
$SUBIT "$JBOSS_CMD_START >${JBOSS_CONSOLE} 2>&1 &"
fi
;;
stop)
if [ -z "$SUBIT" ]; then
$JBOSS_CMD_STOP
else
$SUBIT "$JBOSS_CMD_STOP"
fi
;;
restart)
$0 stop
$0 start
;;
*)
echo "usage: $0 (start|stop|restart|help)"
esac
To run JBoss as a service and enable start up at boot, make the script we created above executable and add it to our chkconfig so it starts at boot.
[root@sv2 init.d]# chmod 755 jboss [root@sv2 init.d]# chkconfig --add jboss [root@sv2 init.d]# chkconfig --level 234 jboss on
We should now be able to Start, Stop, and Restart JBoss as a service.
Start JBoss:
Note: JBoss can take some time to start.
[root@sv2 init.d]# service jboss6 start JBOSS_CMD_START = cd /usr/share/jboss-6.0.0.Final/bin; /usr/share/jboss-6.0.0.Final/bin/run.sh -c default -b 0.0.0.0
Stop JBoss:
[root@sv2 init.d]# service jboss6 stop JBOSS_CMD_START = cd /usr/share/jboss-6.0.0.Final/bin; /usr/share/jboss-6.0.0.Final/bin/run.sh -c default -b 0.0.0.0 Shutdown message has been posted to the server. Server shutdown may take a while - check logfiles for completion
Make sure JBoss is started and you should now be able to access the Jboss Console at:
http://yourdomain.com:8080 or http://yourip:8080
The default user name and password for the JBoss Admin Console is admin/admin
Access the Admin Console by clicking on the Administration Console link.
To change the default Admin Console password, go to:
/usr/share/jboss-6.0.0.Final/server/default/conf/props
Open the jmx-console-users.properties file in text editor and change the password.
# A sample users.properties file for use with the UsersRolesLoginModule admin=MyPassword
To secure the JMX Console, go to:
/usr/share/jboss-6.0.0.Final/common/deploy/jmx-console.war/WEB-INF
First, edit the web.xml file. Towards the bottom, you will find the security-constraint as shown below:
<!-- A security constraint that restricts access to the HTML JMX console
to users with the role JBossAdmin. Edit the roles to what you want and
uncomment the WEB-INF/jboss-web.xml/security-domain element to enable
secured access to the HTML JMX console.
<security-constraint>
<web-resource-collection>
<web-resource-name>HtmlAdaptor</web-resource-name>
<description>An example security config that only allows users with the
role JBossAdmin to access the HTML JMX console web application
</description>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<auth-constraint>
<role-name>JBossAdmin</role-name>
</auth-constraint>
</security-constraint>
-->
Un-comment the security-constraint section so it appears thus:
<security-constraint>
<web-resource-collection>
<web-resource-name>HtmlAdaptor</web-resource-name>
<description>An example security config that only allows users with the
role JBossAdmin to access the HTML JMX console web application
</description>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<auth-constraint>
<role-name>JBossAdmin</role-name>
</auth-constraint>
</security-constraint>
Next, still in the WEB-INF directory, edit the jboss-web.xml file, which will look as below:
<!DOCTYPE jboss-web PUBLIC
"-//JBoss//DTD Web Application 5.0//EN"
"http://www.jboss.org/j2ee/dtd/jboss-web_5_0.dtd">
<jboss-web>
<!-- Uncomment the security-domain to enable security. You will
need to edit the htmladaptor login configuration to setup the
login modules used to authentication users.
<security-domain>java:/jaas/jmx-console</security-domain>
-->
</jboss-web>
Uncomment the security-domain so it appears thus:
<pre class="js" name="code"><!DOCTYPE jboss-web PUBLIC "-//JBoss//DTD Web Application 5.0//EN" "http://www.jboss.org/j2ee/dtd/jboss-web_5_0.dtd"> <jboss-web> <security-domain>java:/jaas/jmx-console</security-domain> </jboss-web>
At this point, the password for the JMX Console will be the same as the password we set for the Admin Console in step 8 above.
Both the Admin Console and JMX Console are are using the jmx-console-roles.properties and jmx-console-users.properties files.
To secure the Web Service Console, go to:
/usr/share/jboss-6.0.0.Final/common/deploy/jbossws-console.war/WEB-INF
First, edit the web.xml file. Towards the bottom, you will find the security-constraint as shown below:
<!-- A security constraint that restricts access
<security-constraint>
<web-resource-collection>
<web-resource-name>ContextServlet</web-resource-name>
<description>An example security config that only allows users with the
role 'friend' to access the JBossWS console web application
</description>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<auth-constraint>
<role-name>friend</role-name>
</auth-constraint>
</security-constraint>
-->
Un-comment the security-constraint section so it appears thus:
<security-constraint>
<web-resource-collection>
<web-resource-name>ContextServlet</web-resource-name>
<description>An example security config that only allows users with the
role 'friend' to access the JBossWS console web application
</description>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<auth-constraint>
<role-name>friend</role-name>
</auth-constraint>
</security-constraint>
Next, still in the WEB-INF directory, edit the jboss-web.xml file, which will look as below:
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE jboss-web
PUBLIC "-//JBoss//DTD Web Application 2.3V2//EN"
"http://www.jboss.org/j2ee/dtd/jboss-web_3_2.dtd">
<jboss-web>
<!-- A security domain that restricts access
<security-domain>java:/jaas/JBossWS</security-domain>
-->
<context-root>jbossws</context-root>
</jboss-web>
Uncomment the security-domain so it appears thus:
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE jboss-web
PUBLIC "-//JBoss//DTD Web Application 2.3V2//EN"
"http://www.jboss.org/j2ee/dtd/jboss-web_3_2.dtd">
<jboss-web>
<security-domain>java:/jaas/JBossWS</security-domain>
<context-root>jbossws</context-root>
</jboss-web>
The default user name and password are kermit/thefrog
To change this, go to:
/usr/share/jboss-6.0.0.Final/server/default/conf/props
Open jbossws-roles.properties in a text editor it should appear as below.
# A sample roles.properties file for use with the UsersRolesLoginModule kermit=friend
Change 'kermit' to a new user name. For example, we'll change it to 'mywsuser' as shown below:
# A sample roles.properties file for use with the UsersRolesLoginModule mywsuser=friend
Open jbossws-users.properties in a text editor it should appear as below.
# A sample users.properties file for use with the UsersRolesLoginModule kermit=thefrog
Change 'kermit' to our new user name 'mywsuser' and change the password. For example, we'll change the password to it to 'MyWsPassword' as shown below:
# A sample users.properties file for use with the UsersRolesLoginModule mywsuser=MyWsPassword
To set the memory limits for JBoss, go to: /usr/share/jboss-6.0.0.Final/bin
Open the run.sh file in a text editor.
Find the section below:
# Setup JBoss specific properties JAVA_OPTS="-Dprogram.name=$PROGNAME $JAVA_OPTS"
Directly below this, add the desired parameters.
# Setup JBoss specific properties JAVA_OPTS="-Dprogram.name=$PROGNAME $JAVA_OPTS" JAVA_OPTS="$JAVA_OPTS -Xms128m -Xmx256m"
I'm installing this on a small VPS so I'm using JAVA_OPTS="$JAVA_OPTS -Xms128m -Xmx256m". You should set this to whatever is appropriate to your server and application.
To run services below port 1024 as user other than root, you can use port forwarding.
You can do this by adding the following to your IP tables:
[root@sv2 ~]# iptables -t nat -A PREROUTING -p tcp -m tcp --dport 80 -j REDIRECT --to-ports 8080 [root@sv2 ~]# iptables -t nat -A PREROUTING -p udp -m udp --dport 80 -j REDIRECT --to-ports 8080
Posted at 06:13PM Mar 12, 2011 by David in JBoss | Comments[10] | Tags: jboss | Export to: |





Posted by ejant on November 22, 2011 at 09:02 AM CST #
Very useful article, greate job!
Thank you very much!
---
Regards,
Vtty0
Posted by vtty0 on December 16, 2011 at 01:46 AM CST #
Posted by Rhys on February 13, 2012 at 01:31 PM CST #
Posted by Will on August 01, 2012 at 09:51 AM CDT #
Posted by Ranjithkumar on August 30, 2012 at 02:04 AM CDT #
Posted by Giri Kanchukota on September 05, 2012 at 05:58 AM CDT #
Posted by Sushil Dubey on October 03, 2012 at 10:43 AM CDT #
I have used your post more than 4-5 times and the steps is correct, I really thank for this post.
Rishikesh Vispute
Nahisk india
Posted by RISHIKESH DILIP VISPUTE on October 15, 2012 at 06:15 PM CDT #
Ganesh
Posted by Ganesh Pathak on April 05, 2013 at 06:20 AM CDT #
1. Add lines 3,4, and 5:
# description: JBoss Start Stop Restart
# processname: jboss
# chkconfig: 234 20 80
process name is jboss6 in jboss script
Posted by lauMarot on April 10, 2013 at 02:28 AM CDT #