LAST CALL FOR CR1 BLOCKERS
by Jason T. Greene
Let me know ASAP if you think we have something that should block the
release.
Thanks!
--
Jason T. Greene
JBoss, a division of Red Hat
13 years, 6 months
Status of default datasource name?
by Max Rydahl Andersen
Hi,
Any conclusion on the AS 7 default datasource name setup ?
Currently its H2DS which means *zero* existing examples deploy even if they could and *all* examples and docs have to be ammended/commented
that you have to configure the datasources your self (which is currently not very well documented).
Any chance we can get DefaultDS bound by default by Final to reduce the amount of "gotchas" users moving from existing AS to the new ?
/max
http://about.me/maxandersen
13 years, 6 months
How do I get a list of the supported commands for a node?
by Scott Stark
I'm trying to figure out how to query the commands a give node in the
model supports. How do I do that? Various queries against a deployment
node do not produce anything useful.
[standalone@localhost:9999 /] ls deployment=
deployment=ROOT.war deployment=openshift-rocks.war
[standalone@localhost:9999 /] ls deployment
ROOT.war openshift-rocks.war
[standalone@localhost:9999 /] deployment=ROOT.war:read-resource
Unexpected command 'deployment=ROOT.war:read-resource'. Type 'help' for
the list of supported commands.
[standalone@localhost:9999 /] deployment=ROOT.war:help
Unexpected command 'deployment=ROOT.war:help'. Type 'help' for the list
of supported commands.
[standalone@localhost:9999 /] deployment=ROOT.war help
Unexpected command 'deployment=ROOT.war help'. Type 'help' for the list
of supported commands.
[standalone@localhost:9999 /] deployment=ROOT.war:remove
Unexpected command 'deployment=ROOT.war:remove'. Type 'help' for the
list of supported commands.
[standalone@localhost:9999 /] deployment=ROOT.war:undeploy
Unexpected command 'deployment=ROOT.war:undeploy'. Type 'help' for the
list of supported commands.
[standalone@localhost:9999 /] deployment=ROOT.war:operations
Unexpected command 'deployment=ROOT.war:operations'. Type 'help' for the
list of supported commands.
[standalone@localhost:9999 /] deployment=ROOT.war:read-resource
Unexpected command 'deployment=ROOT.war:read-resource'. Type 'help' for
the list of supported commands.
13 years, 6 months
Getting Started Developing Applications Guide
by Pete Muir
I have imported the guide into confluence, and it can be found at https://docs.jboss.org/author/display/AS7/Getting+Started+Developing+Appl....
Please give it a read through and make sure that everything works out! Please contact me if you want to make any changes so I can review them.
The quickstarts should be downloadable from Hudson as described, but right now Hudson has broken, so you will need to wait for build #80 or newer to appear in order to get the latest directory structure and readmes for the quick starts.
Eventually the quickstarts zip will be available on the AS7 download page.
13 years, 6 months
cli undeploy name* or *
by Scott Stark
Can I add wildcard name handling element to the cli undeploy command
handler to allow for multiple or even all deployments (in the case of *)
to be undeployed?
The usecase I have for this is how openshift express is dealing with
updates to the git repository mapped to the server
standalone/deployments directory. When a user does a git push of their
application deployments, the server is shutdown, git repo updated, and
the server started back up. Right, removal of deployments in this
scenario causes the server to fail to startup with the updated
deployments because the removed deployments are seen as missing on
startup as show below. Because the deployments directory content is
installed as one unit, all deployments fail. Installing each deployment
seperately would at least allow this to work, but the cleaner approach
would seem to be to remove all deployments prior to shutdown, and let
the new git repo contents been seen as refreshed content to deal with.
That the server is shutdown and restarted is an express requirement that
we have to deal with at this point.
root@ip-10-38-94-14 logs]# cat server.log
01:28:23,215 INFO [org.jboss.as.server.deployment] (MSC service thread 1-3) Starting deployment of "ROOT.war"
01:28:23,246 INFO [org.apache.catalina.core.AprLifecycleListener] (MSC service thread 1-2) The Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: /usr/lib/jvm/java-1.6.0-openjdk-1.6.0.0.x86_64/jre/lib/amd64/server:/usr/lib/jvm/java-1.6.0-openjdk-1.6.0.0.x86_64/jre/lib/amd64:/usr/lib/jvm/java-1.6.0-openjdk-1.6.0.0.x86_64/jre/../lib/amd64:/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib
01:28:23,266 ERROR [org.jboss.msc.service.fail] (MSC service thread 1-3) MSC00001: Failed to start service jboss.deployment.unit."ROOT.war".STRUCTURE: org.jboss.msc.service.StartException in service jboss.deployment.unit."ROOT.war".STRUCTURE: Failed to process phase STRUCTURE of deployment "ROOT.war"
at org.jboss.as.server.deployment.DeploymentUnitPhaseService.start(DeploymentUnitPhaseService.java:121) [jboss-as-server-7.0.0.Beta6OS.jar:7.0.0.Beta6OS]
at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1675) [jboss-msc-1.0.0.Beta8.jar:1.0.0.Beta8]
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110) [:1.6.0_20]
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603) [:1.6.0_20]
at java.lang.Thread.run(Thread.java:636) [:1.6.0_20]
Caused by: org.jboss.as.server.deployment.DeploymentUnitProcessingException: Failed to mount deployment content
at org.jboss.as.server.deployment.module.DeploymentRootMountProcessor.deploy(DeploymentRootMountProcessor.java:82) [jboss-as-server-7.0.0.Beta6OS.jar:7.0.0.Beta6OS]
at org.jboss.as.server.deployment.DeploymentUnitPhaseService.start(DeploymentUnitPhaseService.java:115) [jboss-as-server-7.0.0.Beta6OS.jar:7.0.0.Beta6OS]
... 4 more
Caused by: java.io.FileNotFoundException: /var/lib/libra/c8926000a2cc4bca9d6ccb73f015b305/jbosstest/jbossas-7.0/standalone/deployments/ROOT.war (No such file or directory)
at java.io.FileInputStream.open(Native Method) [:1.6.0_20]
at java.io.FileInputStream.<init>(FileInputStream.java:137) [:1.6.0_20]
at org.jboss.vfs.spi.RootFileSystem.openInputStream(RootFileSystem.java:55)
at org.jboss.vfs.VirtualFile.openStream(VirtualFile.java:238)
at org.jboss.vfs.VFS.mountZipExpanded(VFS.java:567)
at org.jboss.as.server.deployment.impl.ServerDeploymentRepositoryImpl.mountDeploymentContent(ServerDeploymentRepositoryImpl.java:84)
at org.jboss.as.server.deployment.module.DeploymentRootMountProcessor.deploy(DeploymentRootMountProcessor.java:78) [jboss-as-server-7.0.0.Beta6OS.jar:7.0.0.Beta6OS]
... 5 more
13 years, 6 months
Unable to build jboss-as HEAD
by Vimal Kansal
Hi,
I am trying to build jboss-as7 (I have pulled the latest code) and I am
seeing some failed tests. FYI, I am running the build on : Windows7
Premium 64 bit, Java version 1.6.0._24. Surefire reports are attached.
Thx
Vimal
13 years, 6 months
Looking for input on application migration to AS7
by Sande Gilda
I am documenting how to migrate an application from AS5/AS6 to AS7.Its
purpose is to trackapplication changes that are required to deploy and
run existing archives in AS7. It would also be useful to include general
issues about migrating from EE5 to EE6. The document can be found at
https://docs.jboss.org/author/display/AS7/How+do+I+migrate+my+application....
The current content is based on information obtained from existing
community documentation, issues I ran into while migrating a Seam 2 WAR,
and Andy's experience migrating existing applications. So far I have
added the following:
* Class loading changes which includes modules and manifest entries
* DataSource and JDBC drivers
* Portable JNDI syntax
* Logging (although I don't believe this is required, other than
manifest entries)
* Infinispan 2nd level cache
The content is very limited at this point. so I am trying to gather
additional information. Please help me build up and improve this
document. I'm looking for the following:
1. People to review what's there and give feedback, corrections, and
suggestions for improvement.
2. Additional sections that would be useful.
3. Other components that will need to be modified when migrating
applications..
4. Anyone who has experience migrating applications to AS7 and knows
of changes that must be made to successfully deploy and run the
application.
Please feel free to contribute directly to this document (
https://docs.jboss.org/author/display/AS7/How+do+I+migrate+my+application...
)or, if you prefer, send information and feedback to me.
Thanks,
Sande
13 years, 6 months