Re: [Zope] what happens when I click restart...
JCC,
There's no particular magic in manage_restart -- the signal handlers do almost exactly the same thing.
Reasons to prefer TTW restart/shutdown: - logging of who requested it - restart can be automatic (and thus slightly faster)
Reasons to prefer console restart/shutdown: - can fix things if startup doesn't take - can see messages, if any
So basically for routine use, TTW is good. If there's any possibility of trouble, go console
Thank you. Your through explanation is much appreciated. Regards, Tena Sakai
If I develop a Zope application on a laptop which includes lots of extra products, how can I move the whole lot to a production server? regards garry saddington
On Tue, 2002-11-12 at 16:09, garry saddington wrote:
If I develop a Zope application on a laptop which includes lots of extra products, how can I move the whole lot to a production server?
There are two parts: the code and the objects. For the code, all you need to do is locat each product's folder in your local ZOPE_INSTALL/lib/python/Products and copy it to the corresponding directory on your server. After that, you can move your objects by exporting, copying the zexp files to the server's ZOPE_INSTALL/import directory and importing through the server's ZMI. HTH, Dylan
Dylan Reinhardt wrote at 2003-4-4 11:34 -0800:
... After that, you can move your objects by exporting, copying the zexp files to the server's ZOPE_INSTALL/import directory and importing through the server's ZMI.
You can simply move your "Data.fs" (if it contains the correct content). Dieter
garry saddington wrote at 2002-11-13 00:09 +0000:
If I develop a Zope application on a laptop which includes lots of extra products, how can I move the whole lot to a production server? regards
Make an archive from your complete hierarchy, move it to the destination, unarchive, start. Dieter
-----Original Message----- From: zope-admin@zope.org [mailto:zope-admin@zope.org]On Behalf Of Dieter Maurer Sent: Monday, April 07, 2003 10:08 AM To: garry saddington Cc: zope@zope.org Subject: Re: [Zope] Re: Moving a Zope installation
garry saddington wrote at 2002-11-13 00:09 +0000:
If I develop a Zope application on a laptop which includes lots of extra products, how can I move the whole lot to a production server? regards
Make an archive from your complete hierarchy, move it to the destination, unarchive, start.
Be aware of one little gotcha: There is usually a hard coded path in the stop script. Otherwise, most zope installations are completely mobile, as Deiter says.
participants (5)
-
Charlie Reiman -
Dieter Maurer -
Dylan Reinhardt -
garry saddington -
Tena Sakai