Coder
Coder

Reputation: 3282

jboss not picking the war in deployment folder

JBoss Version: jboss-as-7.1.1.Final

I have copied my 'war' to deployment folder : /usr/share/jboss-as-7.1.1.Final/standalone/deployments

when I start the JBoss, It is not deploying the war, It is starting and stuck with the following logs,

/usr/share/jboss-as-7.1.1.Final/bin/standalone.sh -c standalone.xml -b testname.com
=========================================================================

  JBoss Bootstrap Environment

  JBOSS_HOME: /usr/share/jboss-as-7.1.1.Final

  JAVA: java

  JAVA_OPTS:  -server -XX:+UseCompressedOops -XX:+TieredCompilation -Xms64m -Xmx512m -XX:MaxPermSize=256m -Djava.net.preferIPv4Stack=true -Dorg.jboss.resolver.warning=true -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000 -Djboss.modules.system.pkgs=org.jboss.byteman -Djava.awt.headless=true -Djboss.server.default.config=standalone.xml

=========================================================================

OpenJDK 64-Bit Server VM warning: ignoring option MaxPermSize=256m; support was removed in 8.0
16:52:50,529 INFO  [org.jboss.modules] JBoss Modules version 1.1.5.GA
16:52:51,130 INFO  [org.jboss.msc] JBoss MSC version 1.0.2.GA
16:52:51,186 INFO  [org.jboss.as] JBAS015899: JBoss AS 7.1.1.Final "Brontes" starting

Any help is appreciated.

Thanks,
Harry

Upvotes: 0

Views: 1371

Answers (1)

Abhijit Humbe
Abhijit Humbe

Reputation: 1631

JBoss AS 7.1.x is not compatible with JDK 8. If you want to JDK 8 then you should upgrade to WildFly or use JDK 7.

Upvotes: 1

Related Questions