Frost.baka
Frost.baka

Reputation: 8021

WSGI Exception - Port block

I probably should go to Server Fault with this, but I don't know how to exactly spell the problem, it seems that port 80 on my machine(Xubuntu 9.10) is blocked by something, the only clue I've got is this:

Django version 1.2.3, using settings 'settings'
Development server is running at http://0.0.0.0:80/
Quit the server with CONTROL-C.
Error: You don't have permission to access that port.

Maybe someone tripped on something similar in the past?

Upvotes: 3

Views: 1642

Answers (1)

S.Lott
S.Lott

Reputation: 391818

"Error: You don't have permission to access that port"

That's the bottom line. You don't have access.

Port 80 requires a privileged process like Apache. The built-in server with Django is not privileged and should not be used for anything but development.

Upvotes: 5

Related Questions