• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
  • Skip to footer navigation

The Geek Diary

  • OS
    • Linux
    • CentOS/RHEL
    • Solaris
    • Oracle Linux
    • VCS
  • Interview Questions
  • Database
    • oracle
    • oracle 12c
    • ASM
    • mysql
    • MariaDB
  • DevOps
    • Docker
    • Shell Scripting
  • Big Data
    • Hadoop
    • Cloudera
    • Hortonworks HDP

How to disable timeout in ssh during login prompt (login session inactivity) in Linux

by admin

You are one of those guys who need more time while putting in the credentials during ssh logins, but due to the login session inactivity timeout, you are not able to login into the system in time.

# time ssh -l testuser server01
Password:
Connection closed by 192.168.10.10

real    2m06.000s
user    0m0.015s
sys     0m0.004s

This short note lists steps to disable the login session timeout in ssh.

Types of inactivity timeouts

There are 2 types of inactivity timeouts.

  1. login session inactivity: This is before you log in and you are at the Login: prompt.
  2. shell session inactivity: This is after you login and the session is left unattended.

Disabling login session inactivity during ssh login

1. Please put “LoginGraceTime 0” into /etc/ssh/sshd_config.

# vi /etc/ssh/sshd_config
LoginGraceTime 0

2. Restart the ssh service for the changes to take effect.

# service sshd restart

This will disable the auto disconnection. If you do not want to disable the auto disconnect, you can increase the time for auto disconnect to a sufficiently large value. Just set the seconds after “LoginGraceTime” parameter.

Filed Under: Linux

Some more articles you might also be interested in …

  1. What are sparse files in Linux
  2. How to disable NetworkManager on CentOS / RHEL 7
  3. ssh-copy-id: command not found
  4. dos2unix: command not found
  5. NFSv4 Client Shows “nobody” As Owner And Group For Mount Point (CentOS/RHEL)
  6. CentOS / RHEL 7 : systemd-analyze command to find booting time delays
  7. chkconfig: command not found
  8. autorandr: command not found
  9. showmount Command Examples in Linux
  10. CentOS / RHEL : Converting an Existing Root Filesystem to LVM Partition

You May Also Like

Primary Sidebar

Recent Posts

  • powertop Command Examples in Linux
  • powertop: command not found
  • powerstat: command not found
  • powerstat Command Examples in Linux

© 2023 · The Geek Diary

  • Archives
  • Contact Us
  • Copyright