Im trying to create a website with Web.py but its not letting me open a create a socket on port 80 but it works on every other port.

I have port forwarded and all that so that's not the problem.

python main.py 80

but when I do this I get the error:

http://0.0.0.0:80/
Traceback (most recent call last):
  File "main.py", line 43, in <module>
    app.run()
  File "/usr/local/lib/python2.7/dist-packages/web/application.py", line 311, in run
    return wsgi.runwsgi(self.wsgifunc(*middleware))
  File "/usr/local/lib/python2.7/dist-packages/web/wsgi.py", line 54, in runwsgi
    return httpserver.runsimple(func, validip(listget(sys.argv, 1, '')))
  File "/usr/local/lib/python2.7/dist-packages/web/httpserver.py", line 148, in runsimple
    server.start()
  File "/usr/local/lib/python2.7/dist-packages/web/wsgiserver/__init__.py", line 1753, in start
    raise socket.error(msg)
socket.error: No socket could be created

my code so far is:

import MySQLdb
import web
import hashlib as h


urls = (

'/', "index", "/register/?", "register", "/login/?", "login", "/thankyou/?", "thankyou"

)

app = web.application(urls, globals())
render = web.template.render("templates/")
db = web.database (dbn="mysql", user="root", pw="461408", db="realmd")

class index():
    def GET(self):
        return render.index()
class register():
    def GET(self):
        return render.register()
    def POST(self):
        i = web.input()
        user = h.sha1(i.username).hexdigest()
        pw = h.sha1(i.password).hexdigest()

        n = db.insert("account", username=user, password=pw)




if __name__ == '__main__':
    app.run()

Can someone help please?

link|improve this question

80% accept rate
2  
Do you have another service listening on port 80? Like apache? – Will Nov 13 '11 at 22:41
"...it works on every other port." Really? – Ignacio Vazquez-Abrams Nov 13 '11 at 22:45
2  
Have you tried port 81? Maybe a permissions error. On Linux (at least), you need to be root to listen on a low port like that. (I think). – Adam Wagner Nov 13 '11 at 22:48
What operating system are you using? What other ports did you try? – Lycha Nov 13 '11 at 22:58
So you tried on 65534 other ports? ;) – wim Nov 13 '11 at 23:05
feedback

3 Answers

up vote 3 down vote accepted

You possibly have something else working on port 80. Try the command netstat -ln | grep 80 to check that.

Alternatively, you can try telnet localhost 80, and if the connection is refused then that port should be clear to use.

link|improve this answer
feedback

Visit 127.0.0.1 in a browser. There is likely already a process using port 80, and that port is supposed to be used for http, so that's probably the easiest way to see what's using it.

link|improve this answer
feedback

Using CherryPy here. I had the same issue, as per the useful advice here I had checked I was not running anything else like nginx or apache (I hadn't even installed them!), I was just using python and CherryPy.

As Adam Wagner, had very kindly pointed out, it was in fact a permissions problem. My user could not reserve port 80 for use. I haven't yet found any advice or documentation on setting up and using a user like www-data to run a daemon, and serve data.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.