I have made changes in development.ini. How do I run it again, so the changes are seen?
when I run
../bin/pserve development.ini
I get an error that the adsress is already taken?
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.
There are three options:
You have another terminal open with
pservestill running. Find it and stop pserve there.You are still running
pservein daemon (background) mode. Check withpserve development.ini status. If a daemon is running, stop it withpserve development.ini stop, or if you want it to run in background modus, usepserve development.ini restart.You changed the port to something that conflicts with an already running program. You’ll have to figure out what that is. Try connecting to that port with your browser or using the
telnetcommand, for example. Either change yourdevelopment.inito not conflict or stop the other program.