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

有帮助吗?

解决方案

"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.

其他提示

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

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top