[Zope] Redhat 6.2 problems

2000-08-10 Thread Scott Burton

I am trying to run the latest version of Zope (2.2.1 beta) on a Redhat 6.2
Linux system. When I run the ./start script it gets to the Zope Server
Monitor and sits there. It never returns back to the bash prompt. I can get
to Zope's management interface from a browser so Zope *is* running. However
if I close that terminal window, Zope stops. Python 1.5.2_13 is the version
installed by Redhat. Which is the correct version of Python, last I checked.
Also, if I run a startup script to start Zope during the boot process, it
hangs the boot process. Any suggestions?

Scott Burton


___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




Re: [Zope] Redhat 6.2 problems

2000-08-10 Thread Phil Harris

Scott,

By default Zope runs in debug mode, edit the script and remove the -D and it
should run as a daemon.

Phil

- Original Message -
From: Scott Burton [EMAIL PROTECTED]
To: Zope List [EMAIL PROTECTED]
Sent: Thursday, August 10, 2000 11:32 PM
Subject: [Zope] Redhat 6.2 problems


 I am trying to run the latest version of Zope (2.2.1 beta) on a Redhat 6.2
 Linux system. When I run the ./start script it gets to the Zope Server
 Monitor and sits there. It never returns back to the bash prompt. I can
get
 to Zope's management interface from a browser so Zope *is* running.
However
 if I close that terminal window, Zope stops. Python 1.5.2_13 is the
version
 installed by Redhat. Which is the correct version of Python, last I
checked.
 Also, if I run a startup script to start Zope during the boot process, it
 hangs the boot process. Any suggestions?

 Scott Burton


 ___
 Zope maillist  -  [EMAIL PROTECTED]
 http://lists.zope.org/mailman/listinfo/zope
 **   No cross posts or HTML encoding!  **
 (Related lists -
  http://lists.zope.org/mailman/listinfo/zope-announce
  http://lists.zope.org/mailman/listinfo/zope-dev )


___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




Re: [Zope] Redhat 6.2 problems

2000-08-10 Thread Luis Cortes

You can run it as a background process.

./start 

or you can create/modify the initialize file in /etc/rc.d/init.d/Zope

if it is not there, create one, if it is check it to see that it is pointing
to the correct path.
Also, in the boot script make sure that you have a  to start it as a
background process.

Regards,
Luis.




- Original Message -
From: "Scott Burton" [EMAIL PROTECTED]
To: "Zope List" [EMAIL PROTECTED]
Sent: Thursday, August 10, 2000 3:32 PM
Subject: [Zope] Redhat 6.2 problems


 I am trying to run the latest version of Zope (2.2.1 beta) on a Redhat 6.2
 Linux system. When I run the ./start script it gets to the Zope Server
 Monitor and sits there. It never returns back to the bash prompt. I can
get
 to Zope's management interface from a browser so Zope *is* running.
However
 if I close that terminal window, Zope stops. Python 1.5.2_13 is the
version
 installed by Redhat. Which is the correct version of Python, last I
checked.
 Also, if I run a startup script to start Zope during the boot process, it
 hangs the boot process. Any suggestions?

 Scott Burton


 ___
 Zope maillist  -  [EMAIL PROTECTED]
 http://lists.zope.org/mailman/listinfo/zope
 **   No cross posts or HTML encoding!  **
 (Related lists -
  http://lists.zope.org/mailman/listinfo/zope-announce
  http://lists.zope.org/mailman/listinfo/zope-dev )



___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




Re: [Zope] Redhat 6.2 problems

2000-08-10 Thread Curtis Maloney

On Fri, 11 Aug 2000, Scott Burton wrote:
 I am trying to run the latest version of Zope (2.2.1 beta) on a Redhat 6.2
 Linux system. When I run the ./start script it gets to the Zope Server
 Monitor and sits there. It never returns back to the bash prompt. I can get
 to Zope's management interface from a browser so Zope *is* running. However
 if I close that terminal window, Zope stops. Python 1.5.2_13 is the version
 installed by Redhat. Which is the correct version of Python, last I
 checked. Also, if I run a startup script to start Zope during the boot
 process, it hangs the boot process. Any suggestions?

Because the start script runs Zope  in Debug mode by default (-D), it does 
not background.  Either run  ./startor remove the -D from the start 
script.

Personally, i have added the following line to the end of /etc/rc.d/rc.local :

/bin/su -l zope --command=/usr/local/zope/start 

I have added a user called zope, and 'chown'ed all the zope files to user 
zope group zope.


Alternatively, you CAN run zope from inittab by adding:
zo:234:respawn:/bin/su zope -c /usr/local/zope/start /dev/msglog2 
/dev/msglog /dev/console

This will mean that if, for some bizarre reason, zope crashes (or is killed), 
it will restart.


 Scott Burton


Have a better one,
Curtis Maloney

___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )