I am deploying a WebApplication with several separate war
and ear
-files to a wildfly 10.1 server.
What I do is this: I clean the deployments
, data/content
and tmp
folder, then copy all necessary war
and ear
files into the deployments-folder.
Then, I start the Server either in Debug-Mode via Spring Tool Suite 3.8.1
(basically Eclipse Neon
) or directly via standalone.sh
.
The server starts up normally, gets deploys all projects and publishes this message:
[org.jboss.as] (Controller Boot Thread) WFLYSRV0025: WildFly Full 10.1.0.Final (WildFly Core 2.2.0.Final) started in 326001ms - Started 5819 of 6193 services (642 services are lazy, passive or on-demand)
The next message that follows, roughly half a second later, is the first Unregistered web context
-message, followed by a general deployment stop.
There is no message in the log connected to this, neither an ERROR
, nor a WARNING
, SEVERE
or FATAL
in sight.
After stopping all Deployments, the server still runs, but no context is reachable.
When deploying the applications one-by-one, the server accepts, deploys and keeps running, which leads be to believe that there is something wrong with the server itself.
the memory-relevant VM-Arguments are these: -Xms1024m -Xmx4096m
.
The server does not run on a timeout, as that has been thorougly tested and produces error messages.