-
Notifications
You must be signed in to change notification settings - Fork 823
New issue
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
On local server start error says the port is already in use #740
Comments
When you run in another cmd.exe: netstat -anb Do you see the port being occupied? If you run in bash: lsof -i :8000 Can you see who is using that port? |
I also have this issue, but with redis. Output from running a newly built Same OS build number (14393.10), Windows 10 x64 Anniversary Update. |
Could you provide repro steps along with strace please, so I can look more into it? More here: |
Of course! I can open a separate ticket if you think the issues are unrelated. Here is the gist containing the strace created with https://gist.github.com/dvlsg/6232d2adde9971a3479c848ce5b2704b And here are the steps I used to install wget http://download.redis.io/redis-stable.tar.gz
tar xvzf redis-stable.tar.gz
cd redis-stable/deps
# i had to first make each dep manually, for some reason.
make geohash-int hiredis jemalloc linenoise lua
cd ..
make
cd src
redis-server Here's the console output from
And just to reconfirm, the following two commands result in empty outputs (I also looked through the
|
Any info on what's the expected time of fix release? I'm experiencing the same exact issue as the guys. |
This looks related to #996. Essentially, the problem is lack of full support for IPV6_V6ONLY. See #996 for detailed analysis. Apologize for the inconvinience. We are actively working with the Windows networking team to address this issue and expect it to be fixed shortly. But as a workaround, you can try using only IPV4 or different ports for IPV4 and IPV6. From the trace shared by @dvlsg |
With the help of the Windows networking team, we were able to fully implement the IPV6_V6ONLY flag. I was able to get the |
Just FYI that the IPV6_V6ONLY issue is fixed in 14936 (see release notes) |
Closing this out. If this is still failing for people in 14942+, do let us know. |
The text was updated successfully, but these errors were encountered: