zoukankan      html  css  js  c++  java
  • timed out waiting for input: auto-logout

    The ssh "timed out waiting for input: auto-logout" messages is generated by ssh upon reaching a auto-logout after an inactivity time specified by the TMOUT environment variable. If this variable is not set your session will not be auto-logged out due to inactivity. If the environment variable is set, your session will be automatically closed/logged out after the amount of seconds specified by the TMOUT variable.

    To see if your auto-logout variable is set and/or see what it is set to issue the following command:
     $ echo $TMOUT

    Often this value is defined in /etc/profile (globally) or your user's profile (~/.profile or ~/.bash_profile).

    To alter the auto-logout amount, set the TMOUT environment variable accordingly:
    * TMOUT=600   #set an auto-logout timeout for 10 minutes
    * TMOUT=1200  #set an auto-logout timeout for 20 minutes
    * TMOUT=   #turn off auto-logout (user session will not auto-logout due to session inactivity)

    This value can be set globally (e.g. TMOUT=1200) in the /etc/profile file; however, each user can override the value by setting the TMOUT variable in their personal profile file (~/.profile or ~/.bash_profile). To do this simply set the TMOUT variable as you like in your profile file.

    Dont forget to source the file you changed to get the settings to take effect immediately or log out and log back in.
    e.g:  source  /etc/profile

  • 相关阅读:
    使用sublimehighlight 将文本 转化html
    iOS- 制作U盘安装Mac OS X 系统
    垃圾回收的常见算法
    jvm的三种参数类型
    HashMap遍历取值
    不要在 foreach 循环里进行元素的 remove/add 操作
    Arrays.asList()使用指南
    正确使用 equals 方法
    elasticsearch安装与配置(在Linux环境下配置)
    本地访问Linux里端口连接失败
  • 原文地址:https://www.cnblogs.com/rusking/p/4762593.html
Copyright © 2011-2022 走看看