JBoss Application Server (or JBoss AS) is a free software/open-source Java EE-based application server.
Questions tagged [jboss]
377 questions
1
vote
1 answer
How can I implement a high availability service with JBoss 5?
I've tried to implement a high availability service with JBoss and Apache.
The architecture is:
Apache
| |
| |
JBoss1 JBoss2
There is a balancer implemented from Apache to the JBoss'es, and it's working fine. Sometimes the…

Andres
- 111
- 4
1
vote
1 answer
NTLM Basic authentication fails behind http apache only when load balancing
I set up an apache http reverse proxy and load balance.
I already know that Reverse Proxying will break NTLM dialog, and leads to something like Basic Auth against Active Directory, which is sufficient for me.
NTLM is supported by jCIFS on my JBoss,…

Jean-Rémy Revy
- 159
- 2
- 14
1
vote
2 answers
jboss wildcard cert import
I have a wildcard Cert from godaddy that is installed in our network on a 2008 R2 server running IIS. I have several windows servers now using this wildcard cert and importing into IIS was very straight forward.
My Issue is that I now have a…

Bill Chapman
- 13
- 1
- 3
1
vote
0 answers
JBoss 7.1. Please help configure "mail-session" via jboss-cli
I need to create smtp Mail connector via jboss-cli command line. So far I've managed to create node in configuration xml:
/subsystem=mail/mail-session="java:/mail/myMail":add(jndi-name="java:/mail/myMail",…

andbi
- 343
- 1
- 3
- 9
1
vote
2 answers
how to make my domain public?
I have my web application running in jboss on my pc. But it is accessible only in localhost. I have seen in sites like godaddy, they talk about giving a domain name to your site. But where is the mapping actually done. And will I be able to use my…

Ashwin
- 307
- 1
- 4
- 13
1
vote
1 answer
mod_ajp_proxy configurations and session stickiness
I have a jboss and apache setup hosting my .war file. I have enabled session stickiness to forward requests from apache to jboss . Assume I have 2 apache and 2 jboss instances.
Is the below setting correct? Currently session stickyness is not…

Sekhar
- 143
- 1
- 3
1
vote
1 answer
How can i monitor and rectify Full GC happening in my RedHat Linux Application Server...?
Last few days i am facing some Full Gc issues in my RedHat Linux Application Server with out having any load and sample gclog is shown below
2012-02-24T10:37:35.359+0530: 1194221.789: [Full GC 1194221.789: [Tenured: 1075903K->1075903K(1075904K),…

Jayakrishnan T
- 31
- 1
- 6
1
vote
1 answer
Reverse Proxy and Java Application Server Security
Is it possible to have the reverse proxy (Apache HTTP 2.2) handle authentication (HTTP Basic) and then still use the container managed security of the Java application server (GlassFish 3.1 or JBoss 7.0.2) for authorization?
I've got GlassFish doing…

Ryan
- 430
- 5
- 13
1
vote
2 answers
Running JBoss 6 with Runit / daemontools or other process supervision framework
I'm tying to use runit to daemonize JBoss.
I use the /opt/jboss-6.1.0.Final/bin/run.sh script to start the server. When I do so from the comandline, JBoss does not detach (which is what we want), and will also shut down when CTRL+C is pressed. In…

Alex Recarey
- 441
- 1
- 6
- 14
1
vote
2 answers
JBoss basic access
I have JBoss 5 deployed on Solaris 10 - the servers connection has unrestricted high ports (>1023) open to the internet.
I can access the box via ssh & FTP from a second server on the same subnet and anywhere over the internet.
JBoss is running over…

kgbolger
- 33
- 3
1
vote
2 answers
apache and jboss load balancing setup
In a normal load balancing setup with apache(mod_jk) and jboss what part of the total processing is done by apache and what part of it is done by jboss. If apache only balances the load then, in theory, it should be possible to get the results…

Bonaqa
- 11
- 2
1
vote
1 answer
Using apache Mod_proxy_loadbalancer with JBoss
We are using Apache mod_proxy_loadbalancer with 4 backend JBoss, here are the configuration in backend server:
Allow from all
BalancerMember x.11:8080/APP route=node11 timeout=600…

hntangwei
- 47
- 1
- 5
1
vote
1 answer
What to do: Arjuna RecoveryManager startup failing: SocketProcessId.getpid could not get unique port
When starting up a fresh instance of JBoss 6.1, I get the following error
from Arjuna Recovery Manager, which I believe is part of the jboss-ts transaction
service package. This error blocks the web server from starting up properly as…

Jukka Dahlbom
- 111
- 4
1
vote
1 answer
How do you set up the crossdomain.xml for site whose URL is the machine name?
I'm working on a Silverlight app hosted on IIS 6 (Windows Server 2003), which talks to a web service on a JBoss app server (JBoss 4.2.2 also on Windows Server 2003). The Silverlight app is only used on the LAN, so it's addressed with a URL like so:…

Dov
- 117
- 1
- 7
1
vote
1 answer
multiple loadbalancers in modjk configuration in Apache Webserver for JBoss Instance Load-balancing
In most of the cases, we will have
1)only one worker defined of type 'lb' (Loadbalancer)
2)we will have multiple member workers (target application server instances defined)
3)We will map those target workers with defined load balancer with
the…

Hareesh Ram
- 11
- 3