LoginSignup
21

More than 5 years have passed since last update.

tmuxで"protocol version mismatch"と言われてもattachする方法

Last updated at Posted at 2014-08-14

tmuxのバージョンアップ後"protocol version mismatch"と言われて既存セッションにattachできないことがある。

$ tmux at
protocol version mismatch (client 8, server 7)

tmuxのプロセスidを調べて/proc/${pid}/exeと呼び出すことでバージョンアップ前のtmuxを実行しattachすることができる。

$ pgrep tmux
12345
$ /proc/12345/exe at

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
21