[Zope] zope 2.6 start problems
Dieter Maurer
dieter@handshake.de
Sat, 11 Jan 2003 19:55:54 +0100
AM wrote at 2003-1-10 18:27 -0800:
> ...
> cd $INSTANCE_HOME
> /usr/bin/env /usr/bin/python2.1 \
> $INSTANCE_HOME/z2.py \
> -D \
> ...
> >> /var/log/zope/zserver.log \
> 2>&1
>
>
> When I do a ./start &, it starts up the process since I can see it when
> I do a ps -ax, however there are no messages on the screen, even though
> I am running in debug mode.
You should not expect output on the screen when you redirect such output
to a file. Search for it in "...zserver.log".
Due to buffering, you may see the output only after the buffer
(usually 8kB big) is full/flushed.
A much better approach is to activate Zope logging (--> doc/LOGGING.txt).
> But that's still ok. I can't seem to hit the server on that port at all.
> Also another peculiar thing came up. to check whether it was up or not I
> ran a nmap -
You told it to listen only on one interface (i.e. IP address).
Are you sure, you are using this interface (and not "localhost")?
Dieter