This sucks.

$ tmux attach-session
no sessions

My sysadmin upgraded tmux and now I can't reattach. My processes are still running according to ps ux. Is there any hope of recovering my session?

Update: There's a socket in /tmp/tmux-1234, so I tried tmux -L /tmp/tmux-1234/default attach, but tmux does nothing. Hooray.

link|improve this question

80% accept rate
feedback

2 Answers

up vote 4 down vote accepted

This quickest way to determine if you can recover is:

killall -10 tmux

That will send the signal to recreate all socket files for any running tmux processes. If you're not root, no problem it will only signal your tmux process anyway.

Long story short, if tmux is not running (ps xu | grep tmux), you're screwed :(

link|improve this answer
feedback

tmux is not guaranteed to be compatible across updates; ask your sysadmin to let you know before doing upgrades or use a copy you built locally that he is less likely to mess with.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.