Cygwin tmux: “failed to connect to server: No error”

cygwin;tmux

Just as the title says, whenever I try to start tmux in Cygwin 64-bit (Win7), with any or no arguments besides --help, I get the following error:

$ tmux
failed to connect to server: No error

I can't reproduce this on Linux. Any help would be greatly appreciated.

Thanks!

Best Answer

This works for me too on 32-bit Win7. But I need to delete the directory every time before launching tmux so I just added an alias to .bashrc.

alias tmux='rm -rf /tmp/tmux* && tmux'
Related Question