Using Keep-Alives To Ensure Long-Running MySQL & MariaDB Sessions Stay Connected

Author: , June 14th, 2019

Overview The Skinny In this blog post we will discuss how to use the Tungsten Connector keep-alive feature to ensure long-running MySQL & MariaDB/Percona Server client sessions stay connected in a Tungsten Cluster. Agenda What’s Here? Briefly explore how the Tungsten Connector works Describe the Connector keep-alives – what are they and why do we […]

How To Keep SSH Alive In MacOSX Lion Terminal Sessions

Author: , May 24th, 2012

Apple’s 10.7 Lion, is NOT my favorite iteration of MacOSX. They continue to make the OS more Windows-like, which means they have started down that slippery slope… In Snow Leopard, I could have my ssh sessions running for weeks. In Lion, the ssh sessions time out with nasty errors, including “Write failed: Broken pipe”. After […]

How To Keep SSH Sessions Alive

Author: , November 3rd, 2010

Edit your /etc/ssh/sshd_config file and add the following lines: [code] KeepAlive yes ClientAliveInterval 30 ClientAliveCountMax 999999 [/code]