Skip to content

Instantly share code, notes, and snippets.

@huanle0610
Forked from andyvanee/.ssh_config
Created April 20, 2020 00:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save huanle0610/13137a861d96c5f4f0edd669278f2f28 to your computer and use it in GitHub Desktop.
Save huanle0610/13137a861d96c5f4f0edd669278f2f28 to your computer and use it in GitHub Desktop.
Fix unix_listener too long for Unix domain socket
Host *
ControlPath ~/.ssh/control/%C
ControlMaster auto
  • Problem: unix listener too long for Unix domain socket

  • Solution: mkdir ~/.ssh/control and modify ~/.ssh/config use the %C format instead of %r@%h:%p

  • More Detail: man ssh_config defines the %C format as 'a hash of the concatenation: %l%h%p%r'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment