JBoss AS 7 on Ubuntu 12.04 server - Deployment errors - deployment

Setup
I setup a virtual machine with Ubuntu 12.04 64bit where I want
to run JBoss AS 7 and deploy Nexus OSS as a war file.
This tutorial was used to setup JBoss as a service on linux.
I found this thread, too, but the configuration script configuration
didn't worked for as well as the script shipped with JBoss in bin/init.d/.
Deployment Problem
No I'm trying to deploy the Nexus OSS war file. I had two different approaches.
1. Deploy it via the webinterfaces
I got this error
Request
{
"address" => [("deployment" => "nexus")],
"operation" => "deploy"
}
Response
Internal Server Error
{
"outcome" => "failed",
"failure-description" => {"JBAS014671: Failed services" =>{"jboss.web.deployment.default-host.\"/nexus-2.0.6\"" => "org.jboss.msc.service.StartException in service jboss.web.deployment.default-host.\"/nexus-2.0.6\": JBAS018040: Failed to start context"}},
"rolled-back" => true
}
2. Autodeploy it in /usr/local/jboss-as-7/standalone/deployments/
JBAS015052: Did not receive a response to the deployment operation within the allowed timeout period [60 seconds].
Check the server configuration file and the server logs to find more about the status of the deployment.
However I could find any logs. I search in
/var/log/jboss
$JBOSS_HOME/standalone/log

I haven't tried the most recent WAR, but I tried deploying the Nexus WAR on JBoss AS 7, GlassFish, Geronimo and TomEE without success. They all had different errors. From what I was gathering that WAR just won't work on any Java EE application server. I was only able to get it to work on a servlet container like Tomcat or jetty.

Related

NETBeans GlassFish Server The module has not been deployed

Starting GlassFish Server 4.1.1
GlassFish Server 4.1.1 is running.
In-place deployment at C:\Users\Mesci\Desktop\Java\NetBeansProjeleri\WebApplication1\build\web
GlassFish Server 4.1.1, deploy, Connection refused: connect, false
C:\Users\Mesci\Desktop\Java\NetBeansProjeleri\WebApplication1\nbproject\build-impl.xml:1045: The module has not been deployed.
See the server log for details.
BUILD FAILED (total time: 3 seconds)
I've got error like this. And there is 1045. line :
< nbdeploy clientUrlPart="${client.urlPart}" debugmode="false"
forceRedeploy="${forceRedeploy}"/>
I've just setup NetBeans and when I try my first index.html, I've got anerror.

Installation error BPM Suite JBoss: JBAS011639

On installing, I recieved the following error
Script C:\Program Files\EAP10\cli-scripts\add-mdb-conf.cli failed to run.
CLI command failed: undefined
{
"outcome" => "failed",
"failure-description" => {"JBAS014671: Servicios fallidos" => {"jboss.messaging.default.jms.connection-factory.InVmConnectionFactory" => "org.jboss.msc.service.StartException in service jboss.messaging.default.jms.connection-factory.InVmConnectionFactory: JBAS011639: No logró crear connection-factory
Caused by: HornetQException[errorType=ILLEGAL_STATE message=HQ129005: Connector 'in-vm' not found on the main configuration file]"}},
"rolled-back" => true,
"response-headers" => {"process-state" => "restart-required"},
"command" => undefined
}
Please help me with this error!
Datos:
BPM SUITE 6.3.0 GA //
EAP 6.4.0 //
jdk1.8.0_101
If you want to install BPM Suite 6.3 in EAP 6.4.0 you have to update your EAP first. BPM Suite 6.3 will not be installed properly on any EAP version smaller than 6.4.4 . Download an update for EAP 6.4 (EAP-6.4.4 or greater patch), apply the patch to the server and then try again the installation. Another option, is to use smaller version of BPM Suite (BPM Suite 6.2 for example), but i don't recommend it as solution.

Deploying sbt project in tomcat

I am facing an issue while deploying an sbt project which is build using maven in tomcat.
While starting the tomcat server I am getting HTTP 500 error
While checking the logs it says
IllegalArgument Exception: No actor system defined
Any help would be appreciated.

JBAS014653: Composite operation failed and was rolled back

Hi everyone i am trying to deploy a project in jboss application server and getting the below error but the same .war file uploading successfully in local server so please help me out to resolve this problem .
{"JBAS014653: Composite operation failed and was rolled back. Steps that failed:" => {"Operation step-2" => {"JBAS014671: Failed services" => {"jboss.deployment.unit.\"xyz.war\".POST_MODULE" => "org.jboss.msc.service.StartException in service jboss.deployment.unit.\"xyz.war\".POST_MODULE: Failed to process phase POST_MODULE of deployment \"xyz.war\""}}}}
It Worked for me.
From below path, take backup of your war files and save in some directory.
JBOSS_UnZip\jboss-as-7.1.1.Final\standalone\deployments
After that delete all the WAR files and try to deploy your new(fresh)WAR file here(in deployments folder) deployment will be successful.
Are you using the same JDK version that you used for compiling your WAR?

Error deploying application to Glassfish 3

When I try to deploy my application named shopping-1 to Glassfish 3 I get the following error:
'Publishing to GlassFish Server Open Source Edition 3 (Java EE 6)2 at localhost...'has encountered a problen.
cannot Deploy shopping-1
Deployment Error for module: shopping-1: Exception while loading the app :
java.lang.Exception: java.lang.IllegalStateException: ContainerBase.addChild: start:
org.apache.catalina.LifecycleException:
org.apache.catalina.LifecycleException:
java.lang.ClassNotFoundException:
org.springframework.web.servlet.DispatcherServlet
How do I track down and fix this issue?
apparently the shopping-1.war file doesn't include the archive containing the DispatcherServlet class.
unzip -l shopping-1.war | grep spring (on Linux) will give you the list of all spring-related included jar files
First run appserver admin-list applications
Check if there are any deployed applications on the server.
Undeploy by running them if there are.
Stop the application server.
Open the location folder where you have the war file for deployment
Check that there is only one war file at a time in it.
7.Start the application server
Deploy the war.
Should work fine.