Questions tagged [wildfly8]

WildFly 8 is a Java EE 7 certified application server.

WildFly is the new name for the open source JBoss Application Server. WildFly 8 is the first release under the WildFly name and so is the direct successor to JBoss AS 7.

WildFly continues to be the upstream project for the JBoss Enterprise Application Platform (EAP) and makes source code available on GitHub.

39 questions
1
vote
1 answer

Nginx reverse proxy with Wildfly

We have a URL www.abc.com that should point to http://IP:8080/app1/index.html running on wildfly-8.2.0.Final. We have another URL www.def.com that we want to point to http://IP:8080/app2/index.html on the same wildfly installation. If we…
hillel
  • 11
  • 1
  • 3
1
vote
0 answers

How to configure virtual host in nginx for wildfly

I need to setup virtualhost on nginx for wildfly server. i was using apache virtual host earlier and i want to do similar settings in nginx I have followed steps given in this article http://nginx.org/en/docs/http/request_processing.html and…
kirti
  • 111
  • 5
1
vote
1 answer

Override context-root of ear file in wildfly config

We are using wildfly 8 and 9 in standalone mode to deploy our applications. In front of the wildfly there is a shared apache reverse proxy. The proxy maps /test/ to one wildfly and /test2/ to another system. Our application is using JSF which makes…
Nitek
  • 111
  • 4
1
vote
1 answer

Wildfly 8.2.0 Final starup script not working Ubuntu 15.05

After installing the wildfly example debian script in $JBOSS/home, I get the following error when running service wildfly start "Failed to restart wildfly.service: Unit wildfly.service failed to load: No such file or directory." I installed the…
jimfromsa
  • 113
  • 3
1
vote
0 answers

Reverse-Proxy fails

I have Apache and Wildfly installed on a Ubuntu 14.04.2 Server and I created a Reverse-Proxy, so that Apache proxies Wildfly. It works, but only half of it. If I hit http://myserver/wildfly/myprogram/index.xthml I do get the entry page, but the…
Socrates
  • 241
  • 4
  • 13
1
vote
1 answer

What is the order of deployment in Wildfly?

I have a large number of services, and a core set of services that are expected to load first so that they are available when the other services load. Does Wildfly have a specific order (e.g. alphabetical, based on filename) that it uses when doing…
Jon Onstott
  • 151
  • 1
  • 8
1
vote
1 answer

jboss cluster in ec2 with s3ping

Am trying to get s3ping discovery method working in wildfly 8.0.0. I am using default Amazon Linux AMI and using chef to launch instances in ec2 based on this tutorial http://aws.typepad.com/awsaktuell/tutorial/. I have deployed a sample web app…
1
vote
0 answers

Wildfly Randomly gets killed

I'm with a weird problem that i tried everything and i couldn't solve it. I have a instance of Wildfly 8.2 running a JavaEE application that controls a CallCenter, this application use like 2 ~ 8 gb memory depends on how much peopple are working,…
Vitor Hugo
  • 111
  • 1
  • 4
1
vote
1 answer

How can I create a domain global deployable module? (Jboss, Wildfly)

Has anyone created or used a deployable module pushed out to slaves (from the Domain Host-Controller) without a separate script or step to update the {JBOSS_HOME}/modules/ directory? I would like to be able to push out updates to a module centrally,…
Gregor
  • 456
  • 2
  • 11
1
vote
3 answers

Wildfly 8.1.0 Final freezes (keeps connections forever / Channel was closed mid chunk)

I have just migrated an application from JBoss 7.1.1 to Wildfly 8.1.0 Final. But now from time to time (like every 2 days) Wildfly freezes, and I have to restart it. My application is basically EJB/JPA/JAX-RS w/ Resteasy. By freezing I mean that…
Renan
  • 111
  • 1
  • 5
1
vote
0 answers

JBoss: How does in the standalone-ha.xml work?

This file contains the usual Keycloak server configuration with the addition of WildFly10 High Availability extensions like Infinispan HA cache and JGroups HA communication channels and their configuration settings.
0
votes
1 answer

How do I get a thread dump of my Wildfly process on Amazon Linux?

We're using Wildfly 11 with JDK 8 on Amazon Linux. How do I get a thread dump of our Wildfly process? We're trying to troubleshoot why we're seeing high CPU utilization for that process. We do NOT have jstack installed so I thought I could use…
Dave
  • 155
  • 1
  • 5
  • 17
0
votes
1 answer

Can the last modification date of standalone.xml file be changed alone?

In our production envirement (jboss wildfly 8.2), Windows server 2012 R2, I noticed that all of the date of creation, modification and access of the configuration file Standalone.xml was changed to the same date. I took a look at the event log to…
KacemSys
  • 3
  • 3
0
votes
1 answer

JCA Connection Pool in Wildfly, how to get the current pool state

I have a Wildfly 9 and one of our JCA Resource Adapter Connection Pools is getting full, so no more connections can be requested. As far as I can tell by now, this is the expected load and I am not loosing connections anywhere (but I keep…
Angelo Fuchs
  • 197
  • 1
  • 13
0
votes
1 answer

WildFly with client certifactes: javax.net.ssl.SSLException: Received fatal alert: unknown_ca

I'm trying to install a wildfly9 server with client certificate authorization. To do that I have: On the Client: Create a self signed certificate: keytool -genkey -keystore client.keystore -validity 3650 -keyalg RSA -keysize 4096 -storetype…
Steffen
  • 929
  • 3
  • 13
  • 28