We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Line 970 of webUI.py sets server_name to localhost.
server_name
localhost
This prevents the webUI from starting with the following error:
ERROR: [Errno 99] error while attempting to bind on address ('::1', 8888, 0, 0): cannot assign requested address ERROR: [Errno 99] error while attempting to bind on address ('::1', 8889, 0, 0): cannot assign requested address ERROR: [Errno 99] error while attempting to bind on address ('::1', 8890, 0, 0): cannot assign requested address
Please could you change the server_name from localhost to 127.0.0.1, as it solves the problem?
127.0.0.1
The text was updated successfully, but these errors were encountered:
This happened to me as well, and it helped. Thank you
Sorry, something went wrong.
No branches or pull requests
Line 970 of webUI.py sets
server_name
tolocalhost
.This prevents the webUI from starting with the following error:
Please could you change the
server_name
fromlocalhost
to127.0.0.1
, as it solves the problem?The text was updated successfully, but these errors were encountered: