I have re-installed Zope 6 times trying to get this to work. I am running as ROOT, I have chown the entire directory to be root and group root. I have purged the /lib/python2.1/test directory. I get a clean install and get my admin password. I then do ./start and get the error below. I try to open http://machine:8080/manage <http://machine:8080/manage> and give it the newly created admin password... no luck, it won't take it. What am I doing wrong? Thanks Allen May MCSi Web Admin 800.842.1702 x7628 [root@nibbler Zope-2.4.3-linux2-x86]# ./start ------ 2002-01-17T18:47:26 PANIC(300) z2 Startup exception Traceback (innermost last): File /usr/zope/Zope-2.4.3-linux2-x86/z2.py, line 625, in ? File /usr/zope/Zope-2.4.3-linux2-x86/ZServer/HTTPServer.py, line 396, in __init__ File /usr/zope/Zope-2.4.3-linux2-x86/ZServer/medusa/http_server.py, line 570, in __init__ File /usr/zope/Zope-2.4.3-linux2-x86/lib/python2.1/asyncore.py, line 298, in bind error: (98, 'Address already in use')
It seems that you have another service, webserver or otherwise, running on that port, or another instance of Zope. Jason --- Allen May <allen.may@mcsinet.com> wrote:
I have re-installed Zope 6 times trying to get this to work. I am running as ROOT, I have chown the entire directory to be root and group root. I have purged the /lib/python2.1/test directory.
I get a clean install and get my admin password.
I then do ./start and get the error below.
I try to open http://machine:8080/manage <http://machine:8080/manage> and give it the newly created admin password... no luck, it won't take it.
What am I doing wrong?
Thanks
Allen May MCSi Web Admin 800.842.1702 x7628
[root@nibbler Zope-2.4.3-linux2-x86]# ./start ------ 2002-01-17T18:47:26 PANIC(300) z2 Startup exception Traceback (innermost last): File /usr/zope/Zope-2.4.3-linux2-x86/z2.py, line 625, in ? File /usr/zope/Zope-2.4.3-linux2-x86/ZServer/HTTPServer.py, line 396, in __init__ File /usr/zope/Zope-2.4.3-linux2-x86/ZServer/medusa/http_server.py, line 570, in __init__ File /usr/zope/Zope-2.4.3-linux2-x86/lib/python2.1/asyncore.py, line 298, in bind error: (98, 'Address already in use')
__________________________________________________ Do You Yahoo!? Send FREE video emails in Yahoo! Mail! http://promo.yahoo.com/videomail/
What am I doing wrong?
You are using MIME. That's what you are doing wrong. :-)
File /usr/zope/Zope-2.4.3-linux2-x86/lib/python2.1/asyncore.py, line 298, in bind error: (98, 'Address already in use')
OK seriously, you seem to be trying to bind to port 8080, and it is already taken. Either you have some other program sitting on 8080, or Zope is already running. You can tell whether zope is running like this: # ps ax|grep z2 If you see a lot of lines similar to "/usr/bin/python2 /usr/local/Zope/z2.py", then Zope is already running, and there's something wrong with your password. It could be a problem of running behind Apache (Zope installed with w_pcgi.py) and not inserting correct magic in httpd.conf (see the file WEBSERVER.txt in Zope/doc) -- Milos Prudek
participants (3)
-
Allen May -
J. Joy -
Milos Prudek