lexesv1 Posted February 8, 2015 Share Posted February 8, 2015 HelloProblemWhen you run multiple servers on different portswebmaster@vps:/home/$ ./murmur.x86 -ini /home/murmur.iniCouldn't create HUP socketpairAbortedWhy is this happening? Quote Link to comment Share on other sites More sharing options...
Moderators fwaggle Posted February 9, 2015 Moderators Share Posted February 9, 2015 Are you running both murmur instances as the same user? I'm not sure if that matters, but it's the only thing I can think of that would be different from boxes where I've run two murmur instances on the same host.Have you compiled it yourself? If so can you edit src/murmur/UnixMurmur.cpp and change: if (::socketpair(AF_UNIX, SOCK_STREAM, 0, iHupFd)) qFatal("Couldn't create HUP socketpair");to something like: if (::socketpair(AF_UNIX, SOCK_STREAM, 0, iHupFd)) qFatal("Couldn't create HUP socketpair: %d", errno);You might have to put #include or something similar at the top, I can't guarantee it'll even build on your system or be useful, but it's about all I can think of to diagnose it. Quote Full disclosure: I used to run a commercial Mumble host, and my opinions do not reflect the opinions of the Mumble project. Avatar is stolen from here Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.