Question

Plone 4.2.5 with ZEO

There is a running instance in /cms/plone4. Today I install another instance in /opt/plone4. When I start the instance in /opt/plone4 (plonectl start) after stopped the instance in /cms/plone4, I find that the running one is still the one in /cms/plone4 even after server reboot.

How can I start the new one?

Best regards. Hugo

Était-ce utile?

La solution

"even after server reboot" may be the key clue to your problem. You've got some init routine that is starting /cms/plone4. There's a good chance that it's a monitoring routine that watches the Plone process and restarts it if it stops. An example of that kind of process monitor (and one that's very popular among Plone integrators) is supervisor.

So, track down the routine that's starting /cms/plone4 on system restart. Change its setup to exclude /cms/plone4 and replace it with the new one.

Autres conseils

Have you changed the port number in the buildout.cfg ? By default plone is running on 8080, change one to another port.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top