|
Now you should make sure that your Zope instance will be automatically
started whenever the server is rebooted (or whenever a backup server kicks
in). This is done by adding a @reboot entry to your crontab:
$ crontab -e
If you are not familiar with the crontab utility, the previous command
will start up your favorite text editor (as dictated by $EDITOR).
Simply insert the line:
@reboot $HOME/myzope/bin/zopectl start
It is a good idea to insert a MAILTO="yourself@domain.ext" line into
your crontab such that any startup error messages will be e-mailed to you.
You can also use the zopectl utility to control a running Zope
instance:
$ ~/myzope/bin/zopectl status
$ ~/myzope/bin/zopectl stop
$ ~/myzope/bin/zopectl start
|