On Jan 22, 2008 8:53 AM, walterbyrd <[EMAIL PROTECTED]> wrote: > > I have been trying to follow the install instructions here. > > http://wiki.pylonshq.com/display/pylonsdocs/Home > > Everything was going okay until I tried this: > > wb:/var/www/helloworld# paster serve --reload development.ini > Starting subprocess with file monitor > Starting server in PID 3751. > 09:45:52,844 INFO [paste.httpserver.ThreadPool] Cannot use > kill_thread_limit as ctypes/killthread is not available > serving on 0.0.0.0:5000 view at http://127.0.0.1:5000 > > I am not doing this on my local system. I am using VPS hosting. I > think the problem is with the 127.0.0.1 address. But I am not sure how > to fix it.
The message means your platform doesn't have a certain threading feature, or possibly that a C file was misconfigured at compilation. The message is INFO, which means the program doesn't consider it a problem; it's just being chatty. More serious messages would be labeled WARN, ERROR, or CRITICAL. However, it's worth bringing to the attention of the Paste developers. Hopefully Ian Bicking is reading this and can tell us why it's doing this and whether it matters. If you don't hear back, I'd ask on the Paste list (pythonpaste.org). Python, unlike Java, has traditionally not been able to kill threads because it's a nonstandard feature in C (different operating systems support it in different ways, and some not at all). So Paste may just be working around this and letting extra threads live rather than killing them. The message is not related to 127.0.0.1; that's just the network address of the same computer (localhost). If your browser can communicate with the application through that address, it's working fine. The only problems I've seen with 127.0.0.1 are: 1) It's not configured in the OS, so it does not work at all. 2) The OS's firewall is blocking it, or pops up a warning dialog whenever it's used. This can be fixed by reconfiguring the firewall. However, both of these cases would be very rare on a virtual server. -- Mike Orr <[EMAIL PROTECTED]> --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/pylons-discuss?hl=en -~----------~----~----~----~------~----~------~--~---
