Your .bashrc looks ok. By the way, you are not, by any chance, signed on as root or running JBoss as root? That is not such a good idea.
When you start JBoss, what log output are you seeing? For me, the last couple of lines look like: 11:28:54,331 INFO [Http11Protocol] Starting Coyote HTTP/1.1 on http-0.0.0.0-8080 | 11:28:54,581 INFO [ChannelSocket] JK: ajp13 listening on /0.0.0.0:8009 | 11:28:54,740 INFO [JkMain] Jk running ID=0 time=0/233 config=null | 11:28:54,762 INFO [Server] JBoss (MX MicroKernel) [4.0.3SP1 (build: CVSTag=JBoss_4_0_3_SP1 date=200510231054)] Started in 37s:32ms The key lines are the 'Starting Coyote' line and the 'Started in ...' line. The results from your second twiddle command are expected because the MainDeployer service does not have a 'Started' attribute. You could use State or StateString instead. (Of course, you would know that if you looked at jmx-console :-) ) But, the JMX port is not the same as the HTTP port, which is why the Coyote line above is so important. What do you see when you try the following commands: netstat -anp | grep java | netstat -anp | grep 8080 Also, how did you install JBoss? Did you get the tar.gz file and untar it (preferred), or did you get the installer and run that? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3932485#3932485 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3932485 ------------------------------------------------------- This SF.Net email is sponsored by xPML, a groundbreaking scripting language that extends applications into web and mobile media. Attend the live webcast and join the prime developer group breaking into this new coding territory! http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 _______________________________________________ JBoss-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jboss-user
