I'd like to deploy a modular grails app to cloudfoundry. There's a user facing app that should get installed at ROOT as normal, but then there's a separate administration system that should get deployed to the same instance(s) at /admin.

But it looks like you can only deploy 1 app per instance to ROOT?

link|improve this question

60% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Yes.

My understanding is that there's no concept of deploying multiple applications to the same application server instance. In most cases this is OK though. With our BI application we would normally deploy it to the same tomcat instance as another application is running on. But instead we deploy it separately. It can access the same databases, and nothing is preventing Single Sign On between the applications or other integration features from being added.

EDIT: application1 presumably is working well and using some database. If you want application2 to access the same data you can just bind it:

vmc bind-service my-database-service application2

Alternatively, of course, you could merge your two applications together. That will probably give the desired result... but it's probably a big effort.

link|improve this answer
How do you ensure both apps hit the save db? – Brad Rhoads Dec 31 '11 at 20:37
I edited the answer to show example of binding to the existing database. – mdahlman Jan 5 at 0:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.