I’m running pylons and I did this:
paster server development.ini
It’s running on :5000
But when I try to run the command again:
paster serve development.ini
I get this message:
socket.error: [Errno 98] Address already in use
Any ideas?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Normally that means it’s still running, but that should only happen if it’s in daemon mode. After you started it, do you get a command prompt, or do you have to stop it with Ctrl-C?
If you get a command prompt back it’s deamon mode and you have to stop it with
If you have stopped it with Ctrl-C (and not Ctrl-Z of course), I have no idea.