Zope-based LDAP-Browser Zygopetale
Hi, does anyone out here know, where to find the Zope-based LDAP Browser Zygopetale ? All mentioned URLs from Google and the OpenLDAP-site either lead to an 'no DNS entry found' or 'access denied' error. I've tried: http://www.xlogix.org http://www.en.xlogix.org http://www.mouli.net http://www.Zygopetale.net Any help appreciated, tnx i.a. ta -------------------------------------------------------------------------- smartferret it-consulting Dipl.-Ing. Linzbichler KEG Dipl.-Ing. Takashi Veikko Linzbichler Tannhofweg 28/3 A-8044 Graz, Austria Tel.: 0316 / 39 89 40 -0 Fax: 0316 / 39 89 40 -20 Mobil: 0676 / 31 26 286 eMail: takashi.linzbichler@smartferret.com WWW: http://www.smartferret.com --------------------------------------------------------------------------
Hi, I have one really great problem. I just installed zope 240 on Linux Red Hat 7. So far, so good. I don't have much experience with linux, and so I have exactlx to know, what to do for an automatic start of zope when the system boots! I used the following script: (from: http://www.zope.org/Members/mcdonc/HowTos/zopeinstall/ZOPE-INSTALL-HOWTO) #! /bin/sh # # processname: zope2 # Source function library. . /etc/rc.d/init.d/functions # Get config. . /etc/sysconfig/network # Check that networking is up. if [ ${NETWORKING} = "no" ] then exit 0 fi # See how we were called. case "$1" in start) echo -n "Starting Zope2 service: " daemon /usr/local/zope/2-1-2/start ;; stop) echo -n "Stopping Zope2 service: " /usr/local/zope/2-1-2/stop ;; restart|reload) $0 stop $0 start ;; *) echo "Usage: zope {start|stop|restart}" exit 1 esac exit 0 ... AND NOW THE BIG QUESTION ... What to do with it ????? Hopefully anyone could tell me how EXACTLY to use it with red hat 7 for an automated startup! I know, that there are a lot of intros around in the net, but for me, as a linux newbie, they are very confusing! Btw: I just tried to copy this script to /etc/rc.d/init.d and then used "chmod +x startzope" ... but without success!!! Thanks for your help ... Marc -- GMX - Die Kommunikationsplattform im Internet. http://www.gmx.net
hi, make symlinks in /etc/rc.d/rc2.d (ou rc3.d, depends on your runlevel (enter "/sbin/runlevel" to know it)), rc0.d and rc6.d. the system will call your /etc/rc.d/init.d/startzope with argument "start" or "stop", depend on the asking runlevel (6=reboot, 0=stop etc.) for starting zope manually, juste do a "/etc/rc.d/init.d/startzope start" hope this help Marc Fischer wrote:
Hi,
I have one really great problem. I just installed zope 240 on Linux Red Hat 7. So far, so good. I don't have much experience with linux, and so I have exactlx to know, what to do for an automatic start of zope when the system boots!
I used the following script: (from: http://www.zope.org/Members/mcdonc/HowTos/zopeinstall/ZOPE-INSTALL-HOWTO)
#! /bin/sh # # processname: zope2
# Source function library. . /etc/rc.d/init.d/functions
# Get config. . /etc/sysconfig/network
# Check that networking is up. if [ ${NETWORKING} = "no" ] then exit 0 fi
# See how we were called. case "$1" in start) echo -n "Starting Zope2 service: " daemon /usr/local/zope/2-1-2/start ;; stop) echo -n "Stopping Zope2 service: " /usr/local/zope/2-1-2/stop ;; restart|reload) $0 stop $0 start ;; *) echo "Usage: zope {start|stop|restart}" exit 1 esac
exit 0
... AND NOW THE BIG QUESTION ...
What to do with it ????? Hopefully anyone could tell me how EXACTLY to use it with red hat 7 for an automated startup! I know, that there are a lot of intros around in the net, but for me, as a linux newbie, they are very confusing!
Btw: I just tried to copy this script to /etc/rc.d/init.d and then used "chmod +x startzope" ... but without success!!!
Thanks for your help ...
Marc
make symlinks in /etc/rc.d/rc2.d (ou rc3.d, depends on your runlevel (enter "/sbin/runlevel" to know it)), rc0.d and rc6.d.
Hey, that sounds good, ... but what are symlinks ??? Could you point me exactly to the needed commands, which I have to use? Thanx a lot ... :-) Marc -------------------------
the system will call your /etc/rc.d/init.d/startzope with argument "start" or "stop", depend on the asking runlevel (6=reboot, 0=stop etc.)
for starting zope manually, juste do a "/etc/rc.d/init.d/startzope start"
hope this help
Marc Fischer wrote:
Hi,
I have one really great problem. I just installed zope 240 on Linux Red Hat 7. So far, so good. I don't have much experience with linux, and so I have exactlx to know, what to do for an automatic start of zope when the system boots!
I used the following script: (from:
http://www.zope.org/Members/mcdonc/HowTos/zopeinstall/ZOPE-INSTALL-HOWTO)
#! /bin/sh # # processname: zope2
# Source function library. . /etc/rc.d/init.d/functions
# Get config. . /etc/sysconfig/network
# Check that networking is up. if [ ${NETWORKING} = "no" ] then exit 0 fi
# See how we were called. case "$1" in start) echo -n "Starting Zope2 service: " daemon /usr/local/zope/2-1-2/start ;; stop) echo -n "Stopping Zope2 service: " /usr/local/zope/2-1-2/stop ;; restart|reload) $0 stop $0 start ;; *) echo "Usage: zope {start|stop|restart}" exit 1 esac
exit 0
... AND NOW THE BIG QUESTION ...
What to do with it ????? Hopefully anyone could tell me how EXACTLY to use it with red hat 7 for
an
automated startup! I know, that there are a lot of intros around in the net, but for me, as a linux newbie, they are very confusing!
Btw: I just tried to copy this script to /etc/rc.d/init.d and then used "chmod +x startzope" ... but without success!!!
Thanks for your help ...
Marc
_______________________________________________ Zope maillist - Zope@zope.org 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 )
-- GMX - Die Kommunikationsplattform im Internet. http://www.gmx.net
to make a symbolic link on startzope, juste do a "ln -s /etc/rc.d/init.d/startzope /etc/rc.d/rc2.d/K90zope", for example. Marc Fischer wrote:
make symlinks in /etc/rc.d/rc2.d (ou rc3.d, depends on your runlevel (enter "/sbin/runlevel" to know it)), rc0.d and rc6.d.
Hey, that sounds good, ... but what are symlinks ??? Could you point me exactly to the needed commands, which I have to use?
Thanx a lot ... :-)
Marc
-------------------------
the system will call your /etc/rc.d/init.d/startzope with argument "start" or "stop", depend on the asking runlevel (6=reboot, 0=stop etc.)
for starting zope manually, juste do a "/etc/rc.d/init.d/startzope start"
hope this help
Marc Fischer wrote:
Hi,
I have one really great problem. I just installed zope 240 on Linux Red
Hat
7. So far, so good. I don't have much experience with linux, and so I
have
exactlx to know, what to do for an automatic start of zope when the
system
boots!
I used the following script: (from:
http://www.zope.org/Members/mcdonc/HowTos/zopeinstall/ZOPE-INSTALL-HOWTO)
#! /bin/sh # # processname: zope2
# Source function library. . /etc/rc.d/init.d/functions
# Get config. . /etc/sysconfig/network
# Check that networking is up. if [ ${NETWORKING} = "no" ] then exit 0 fi
# See how we were called. case "$1" in start) echo -n "Starting Zope2 service: " daemon /usr/local/zope/2-1-2/start ;; stop) echo -n "Stopping Zope2 service: " /usr/local/zope/2-1-2/stop ;; restart|reload) $0 stop $0 start ;; *) echo "Usage: zope {start|stop|restart}" exit 1 esac
exit 0
... AND NOW THE BIG QUESTION ...
What to do with it ????? Hopefully anyone could tell me how EXACTLY to use it with red hat 7 for
an
automated startup! I know, that there are a lot of intros around in the net, but for me, as
a
linux newbie, they are very confusing!
Btw: I just tried to copy this script to /etc/rc.d/init.d and then used "chmod +x startzope" ... but without success!!!
Thanks for your help ...
Marc
_______________________________________________ Zope maillist - Zope@zope.org 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 )
Thanks again, now I have tried: ln -s /etc/rc.d/init.d/startzope /etc/rc.d/rc3.d/K90zope ln -s /etc/rc.d/init.d/startzope /etc/rc.d/rc0.d/K90zope ln -s /etc/rc.d/init.d/startzope /etc/rc.d/rc6.d/K90zope but unfortunately again without success :-( What's wrong, and why those 'K90's ... what do they mean? Marc
to make a symbolic link on startzope, juste do a "ln -s /etc/rc.d/init.d/startzope /etc/rc.d/rc2.d/K90zope", for example.
Marc Fischer wrote:
make symlinks in /etc/rc.d/rc2.d (ou rc3.d, depends on your runlevel (enter "/sbin/runlevel" to know it)), rc0.d and rc6.d.
Hey, that sounds good, ... but what are symlinks ??? Could you point me exactly to the needed commands, which I have to use?
Thanx a lot ... :-)
Marc
-------------------------
the system will call your /etc/rc.d/init.d/startzope with argument "start" or "stop", depend on the asking runlevel (6=reboot, 0=stop etc.)
for starting zope manually, juste do a "/etc/rc.d/init.d/startzope start"
hope this help
Marc Fischer wrote:
Hi,
I have one really great problem. I just installed zope 240 on Linux Red
Hat
7. So far, so good. I don't have much experience with linux, and so I
have
exactlx to know, what to do for an automatic start of zope when the
system
boots!
I used the following script: (from:
http://www.zope.org/Members/mcdonc/HowTos/zopeinstall/ZOPE-INSTALL-HOWTO)
#! /bin/sh # # processname: zope2
# Source function library. . /etc/rc.d/init.d/functions
# Get config. . /etc/sysconfig/network
# Check that networking is up. if [ ${NETWORKING} = "no" ] then exit 0 fi
# See how we were called. case "$1" in start) echo -n "Starting Zope2 service: " daemon /usr/local/zope/2-1-2/start ;; stop) echo -n "Stopping Zope2 service: " /usr/local/zope/2-1-2/stop ;; restart|reload) $0 stop $0 start ;; *) echo "Usage: zope {start|stop|restart}" exit 1 esac
exit 0
... AND NOW THE BIG QUESTION ...
What to do with it ????? Hopefully anyone could tell me how EXACTLY to use it with red hat 7 for
an
automated startup! I know, that there are a lot of intros around in the net, but for me,
as
a
linux newbie, they are very confusing!
Btw: I just tried to copy this script to /etc/rc.d/init.d and then used "chmod +x startzope" ... but without success!!!
Thanks for your help ...
Marc
_______________________________________________ Zope maillist - Zope@zope.org 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 - Zope@zope.org 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 )
-- GMX - Die Kommunikationsplattform im Internet. http://www.gmx.net
Hi Marc, Marc Fischer wrote:
Thanks again,
now I have tried:
ln -s /etc/rc.d/init.d/startzope /etc/rc.d/rc3.d/K90zope ln -s /etc/rc.d/init.d/startzope /etc/rc.d/rc0.d/K90zope ln -s /etc/rc.d/init.d/startzope /etc/rc.d/rc6.d/K90zope
but unfortunately again without success :-( What's wrong, and why those 'K90's ... what do they mean?
add these: ln -s /etc/rc.d/init.d/startzope /etc/rc.d/rc3.d/S90zope ln -s /etc/rc.d/init.d/startzope /etc/rc.d/rc0.d/S90zope ln -s /etc/rc.d/init.d/startzope /etc/rc.d/rc6.d/S90zope the K are the links to stop services, the S are the ones to start a service if you enter a runlevel The numbers are there for ordering the scripts. Next: get a nice doc to admin linux. Ciao, Jochen -- -------------------------------------------------- Jochen Knuth WebMaster http://www.ipro.de IPRO GmbH Phone ++49-7152-93330 Steinbeisstr. 6 Fax ++49-7152-933340 71229 Leonberg EMail: J.Knuth@ipro.de
Hi, oops, Jochen Knuth wrote:
add these: ln -s /etc/rc.d/init.d/startzope /etc/rc.d/rc3.d/S90zope
only this is useful. Maybe these are also useful (if you start in runlevel 2 or 4) ln -s /etc/rc.d/init.d/startzope /etc/rc.d/rc2.d/S90zope ln -s /etc/rc.d/init.d/startzope /etc/rc.d/rc4.d/S90zope ln -s /etc/rc.d/init.d/startzope /etc/rc.d/rc2.d/K90zope ln -s /etc/rc.d/init.d/startzope /etc/rc.d/rc4.d/K90zope
ln -s /etc/rc.d/init.d/startzope /etc/rc.d/rc0.d/S90zope ln -s /etc/rc.d/init.d/startzope /etc/rc.d/rc6.d/S90zope
these two are bad, because the runlevels 0 and 6 are used for reboot and shutdown. Ciao, Jochen P.s.: working with FreeBSD it's sometimes difficult to remember SysV init. -- -------------------------------------------------- Jochen Knuth WebMaster http://www.ipro.de IPRO GmbH Phone ++49-7152-93330 Steinbeisstr. 6 Fax ++49-7152-933340 71229 Leonberg EMail: J.Knuth@ipro.de
Thanks, I had to realize, that something is not ok. ... But I found a rescue CD :-) After creating the simlinks, even only in rc3.d, the bootsequence stops at : starting zope service: .... and nothing more happens!!!! Perhabs because of a failure in the script??? If I try it manually with: ./startzope start ... the server runs, but the console hangs too. I have to change the console with Alt-Fx. Here is the used script again: #! /bin/sh # # processname: zope2 # Source function library. . /etc/rc.d/init.d/functions # Get config. . /etc/sysconfig/network # Check that networking is up. if [ ${NETWORKING} = "no" ] then exit 0 fi # See how we were called. case "$1" in start) echo -n "Starting Zope2 service: " daemon /usr/local/zope/2-1-2/start ;; stop) echo -n "Stopping Zope2 service: " /usr/local/zope/2-1-2/stop ;; restart|reload) $0 stop $0 start ;; *) echo "Usage: zope {start|stop|restart}" exit 1 esac exit 0 Marc
oops,
Jochen Knuth wrote:
add these: ln -s /etc/rc.d/init.d/startzope /etc/rc.d/rc3.d/S90zope
only this is useful.
Maybe these are also useful (if you start in runlevel 2 or 4) ln -s /etc/rc.d/init.d/startzope /etc/rc.d/rc2.d/S90zope ln -s /etc/rc.d/init.d/startzope /etc/rc.d/rc4.d/S90zope ln -s /etc/rc.d/init.d/startzope /etc/rc.d/rc2.d/K90zope ln -s /etc/rc.d/init.d/startzope /etc/rc.d/rc4.d/K90zope
ln -s /etc/rc.d/init.d/startzope /etc/rc.d/rc0.d/S90zope ln -s /etc/rc.d/init.d/startzope /etc/rc.d/rc6.d/S90zope
these two are bad, because the runlevels 0 and 6 are used for reboot and shutdown.
Ciao, Jochen
P.s.: working with FreeBSD it's sometimes difficult to remember SysV init. -- -------------------------------------------------- Jochen Knuth WebMaster http://www.ipro.de IPRO GmbH Phone ++49-7152-93330 Steinbeisstr. 6 Fax ++49-7152-933340 71229 Leonberg EMail: J.Knuth@ipro.de
_______________________________________________ Zope maillist - Zope@zope.org 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 )
-- GMX - Die Kommunikationsplattform im Internet. http://www.gmx.net
Hi, Marc ! Please don't get annoyed if you read these next words, but I would really advise you to either get some minimal Linux-Knowledge or at least try to use the packages as they are provided by your distributor. You're playing 'round here with the SysV-Init and you'd probably better know what you're doing there ... Anyway:
ln -s /etc/rc.d/init.d/startzope /etc/rc.d/rc3.d/K90zope ln -s /etc/rc.d/init.d/startzope /etc/rc.d/rc0.d/K90zope ln -s /etc/rc.d/init.d/startzope /etc/rc.d/rc6.d/K90zope
but unfortunately again without success :-( What's wrong, and why those 'K90's ... what do they mean?
You've made links to your startup-script that are being use when _leaving_ the respective runlevel (i.e. killing the process) therefore they're starzing with a 'K'. The numbers behind then 'K' just give you the order, in which these scripsts are being called by init. Just do as you've done above and create Symlinks starting with 'S'xx (try to find n appropriate value for xx, i.e. at least the networking services should already be running, etc.) I'm not sure about RH's runlevels, but very often RL 6 is used for shutdown (e.g. SuSE), so it doesn't make sense to start Zope in RL 6 ... Usually you will have 2 RL's (multi-user w. networking and multi-user w. networking and X11) in which you'd start a server like zope. Have a look at the RH-docs about which RL's to use. hth, ta -------------------------------------------------------------------------- smartferret it-consulting Dipl.-Ing. Linzbichler KEG Dipl.-Ing. Takashi Veikko Linzbichler Tannhofweg 28/3 A-8044 Graz, Austria Tel.: 0316 / 39 89 40 -0 Fax: 0316 / 39 89 40 -20 Mobil: 0676 / 31 26 286 eMail: takashi.linzbichler@smartferret.com WWW: http://www.smartferret.com --------------------------------------------------------------------------
participants (4)
-
Emmanuel SARACCO -
Jochen Knuth -
Marc Fischer -
Takashi Linzbichler