Re: [Zope-dev] ZEO question.

2001-03-23 Thread Bill Anderson

On 23 Mar 2001 13:37:44 +, Duncan Booth wrote:
...
> BTW, I have managed to get ZEO running as an NT service 
> complete with Core Session in a mounted BerkeleyDB 3.2 storage.



I'd be interested in the BerkelyDB part, mind posting how you got the
last part?



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



Re: [Zope-dev] ZEO question.

2001-03-23 Thread Duncan Booth
> 
> There is a second line to mess with, something about os.ppid I think.
> We should really have these changes made to the source
> 
Yes, you have to change line 310:
open(zeo_pid,'w').write("%s %s" % (os.getppid(), os.getpid()))
to:
open(zeo_pid,'w').write("%s" % (os.getpid()))

I have posted a report on the ZEO Tracker for both these changes.



-- 
Duncan Booth [EMAIL PROTECTED]


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


Re: [Zope-dev] ZEO question.

2001-03-23 Thread Andy

There is a second line to mess with, something about os.ppid I think. We
should really have these changes made to the source

- Original Message -
From: "Chris Withers" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, March 23, 2001 2:23 AM
Subject: [Zope-dev] ZEO question.


> Firstup, a quickie, where's the ZEO list gone?
>
> http://lists.python.org/mailman/listinfo/Zope-ZEO
> ...gives me:
> No such list zope-zeo
>
> And now onto the reason I was looking for that list:
>
> -WinNT 4.0
> -Zope 2.3.1b1
> -ZEO 0.4.1
>
> E:\Zope\2.3.1b1>python lib/python/ZEO/start.py -p 8000
> Traceback (innermost last):
>   File "lib/python/ZEO/start.py", line 315, in ?
> if __name__=='__main__': main(sys.argv)
>   File "lib/python/ZEO/start.py", line 297, in main
> signal.signal(signal.SIGHUP, handler)
> AttributeError: SIGHUP
>
> What does that mean and how can I fix it?
>
> Finally, how can I get the storage server to use the Data.fs from my
> INSTANCE_HOME rather than the SOFTWARE_HOME, which I presume the above
does?
>
> cheers,
>
> Chris
>
> ___
> Zope-Dev maillist  -  [EMAIL PROTECTED]
> http://lists.zope.org/mailman/listinfo/zope-dev
> **  No cross posts or HTML encoding!  **
> (Related lists -
>  http://lists.zope.org/mailman/listinfo/zope-announce
>  http://lists.zope.org/mailman/listinfo/zope )
>



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



[Zope-dev] ZEO question.

2001-03-23 Thread Duncan Booth

> And now onto the reason I was looking for that list:
> 
> -WinNT 4.0
> -Zope 2.3.1b1
> -ZEO 0.4.1
> 
> E:\Zope\2.3.1b1>python lib/python/ZEO/start.py -p 8000
> Traceback (innermost last):
>   File "lib/python/ZEO/start.py", line 315, in ?
> if __name__=='__main__': main(sys.argv)
>   File "lib/python/ZEO/start.py", line 297, in main
> signal.signal(signal.SIGHUP, handler)
> AttributeError: SIGHUP
> 
> What does that mean and how can I fix it?
It means that ZEO isn't compatible with NT. simply comment out 
line 297 of start.py and it should be fine.

> 
> Finally, how can I get the storage server to use the Data.fs from my
> INSTANCE_HOME rather than the SOFTWARE_HOME, which I presume the above
> does?
I think the default is to use INSTANCE_HOME/var/Data.fs so you 
should be happy.

BTW, I have managed to get ZEO running as an NT service 
complete with Core Session in a mounted BerkeleyDB 3.2 storage.

-- 
Duncan Booth [EMAIL PROTECTED]


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



Re: [Zope-dev] ZEO question.

2001-03-23 Thread Martijn Pieters

On Fri, Mar 23, 2001 at 10:23:23AM +, Chris Withers wrote:
> Firstup, a quickie, where's the ZEO list gone?
> 
> http://lists.python.org/mailman/listinfo/Zope-ZEO
> ...gives me:
> No such list zope-zeo

It was renamed ZODB-Dev somewhere last month:

  http://lists.python.org/mailman/listinfo/ZODB-Dev

-- 
Martijn Pieters
| Software Engineer  mailto:[EMAIL PROTECTED]
| Digital Creations  http://www.digicool.com/
| Creators of Zope   http://www.zope.org/
-

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



[Zope-dev] ZEO question.

2001-03-23 Thread Chris Withers

Firstup, a quickie, where's the ZEO list gone?

http://lists.python.org/mailman/listinfo/Zope-ZEO
...gives me:
No such list zope-zeo

And now onto the reason I was looking for that list:

-WinNT 4.0
-Zope 2.3.1b1
-ZEO 0.4.1

E:\Zope\2.3.1b1>python lib/python/ZEO/start.py -p 8000
Traceback (innermost last):
  File "lib/python/ZEO/start.py", line 315, in ?
if __name__=='__main__': main(sys.argv)
  File "lib/python/ZEO/start.py", line 297, in main
signal.signal(signal.SIGHUP, handler)
AttributeError: SIGHUP

What does that mean and how can I fix it?

Finally, how can I get the storage server to use the Data.fs from my
INSTANCE_HOME rather than the SOFTWARE_HOME, which I presume the above does?

cheers,

Chris

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