Reputation: 133
Problem : I setup my Plone site with 2 clients usign Redhat Linux server and used following commands to start them but Client2 is not working properly and automatically stop working manytimes
bin/plonectl server start
bin/plonectl client1 start
bin/plonectl client2 fg (In debug mode)
Please suggest me where i am doing mistake or what else i can do.
Upvotes: 0
Views: 59
Reputation: 7727
This seems ugly (since you can't do it with a command-line switch), but in client2
's /etc/zope.conf
, change the switch
debug-mode off
to
debug-mode on
(but beware that zope.conf
is re-generated every time you run buildout
.)
To always have it on, put
debug-mode = on
in your buildout.cfg
's section on client2.
Upvotes: 0