Open ashleykleynhans opened 1 year ago
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
This happened to me as well, and it helped. Thank you
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?