[Zope] Re: No joy on 8080.

Duncan Booth duncan.booth at suttoncourtenay.org.uk
Mon Jun 26 06:20:42 EDT 2006


Ignacio Valdes wrote:

> This is all on a headless server by ssh so I can't check 
> http://localhost:8080 but http://server ip address:8080 on my browser 
> doesn't work. 

Maybe there is a firewall blocking your access to port 8080 on the
server. Try using wget running on the server to fetch the page locally 
"wget http://localhost:8080" should work, or set up an ssh tunnel. On your 
local machine login to the server using the command:

   ssh -L 9080:localhost:8080 yourserver

which will forward port 9080 on your local machine to localhost:8080 on 
your server. Then you should be able to access the Zope instance as 
localhost:9080 in your browser.



More information about the Zope mailing list