Automatically log out inactive users after login timeout in Linux

Automatically log out inactive users after login timeout in Linux

Method 1: Modify the .bashrc or .bash_profile file

This can be achieved by modifying the .bashrc or .bash_profile file in the home directory. Choose one of the two files and add the following line at the end. The specific operations are as follows:

[GeekDevOps@GeekDevOps /]$ cd ~
[GeekDevOps@GeekDevOps ~]$ echo "TMOUT=90">>.bashrc 
[GeekDevOps@GeekDevOps ~]$ source .bashrc

In the above code, we selected the .bashrc file. If you choose .bash_profile, the operation process is the same. Above, we set the user's automatic logout time to 90 seconds. After 90 seconds, the screen will display as follows:

[GeekDevOps@GeekDevOps ~]$ Timeout waiting for input: Automatically log out Connection closing...Socket close.
Connection closed by foreign host.
Disconnected from remote host(10.1.1.21:22) at 16:38:48.

Method 2: Implement by modifying the ssh configuration file

ssh is a tool that we often use in Linux systems. By modifying the ssh configuration file /etc/ssh/sshd_config we can also implement the timeout automatic logout function, as follows:

[root@GeekDevOps ~]# vim /etc/ssh/sshd_config

Find the following two lines:

#ClientAliveInterval 90
#ClientAliveCountMax 3

Remove the comments and modify the following numbers:

ClientAliveInterval 60
ClientAliveCountMax 5

After saving and exiting, restart the ssh service:

[root@GeekDevOps ~]# service sshd restart

This method will cause a 60-second login timeout for all users except root, and they will be automatically logged out. The first line indicates that the connection will be disconnected after 5 inactivity detections, while the second line indicates that the connection will be disconnected after 5 inactivity detections.

Method 3: Implement by modifying the ssh configuration file

In the /etc/profile file, add the TMOUT field and then source /etc/profile.

TMOUT=300
export TOMOUT

Method 4: Create a script

Log in as root and create a new file called autologout.sh.

vim /etc/profile.d/autologout.sh

Add the following content:

TMOUT=100
readonly TMOUT
export TMOUT

Save and exit the file, and give it executable permissions:

chmod +x /etc/profile.d/autologout.sh

Now, log out or reboot your system. Inactive users will be automatically logged out after 100 seconds. Even if ordinary users want to keep the session connection, they cannot modify this configuration and will be forced to log out after 100 seconds.

Summarize

The above is what I introduced to you about how to automatically log out inactive users after a login timeout in Linux. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • Play with the connect function with timeout in Linux
  • How to solve the timeout during pip operation in Linux
  • Connect timeout processing under Linux (summary)
  • Use Linux Shell script to handle MySQL timeout regularly

<<:  How to understand JavaScript modularity

>>:  Using MySQL database with Python 3.4 under Windows 7

Recommend

JavaScript Basics Objects

Table of contents 1. Object 1.1 What is an object...

Introduction to generating Kubernetes certificates using OpenSSL

Kubernetes supports three types of authentication...

How to access MySql through IP address

1. Log in to mysql: mysql -u root -h 127.0.0.1 -p...

Introduction to the use of the indeterminate property of the checkbox

When we use the folder properties dialog box in Wi...

MySQL 8.0.19 installation detailed tutorial (windows 64 bit)

Table of contents Initialize MySQL Install MySQL ...

How to install JDK8 on Windows

1. Download: http://www.oracle.com/technetwork/ja...

Implementation of MYSQL (telephone number, ID card) data desensitization

1. Data desensitization explanation In daily deve...

3 common errors in reading MySQL Binlog logs

1. mysqlbinlog: [ERROR] unknown variable 'def...

Use of Docker UI, a Docker visualization management tool

1. Introduction to DockerUI DockerUI is based on ...

Use vue2+elementui for hover prompts

Vue2+elementui's hover prompts are divided in...

The actual process of encapsulating axios in the project

Table of contents Preface Benefits of axios encap...

The pitfalls encountered when learning Vue.js

Table of contents Class void pointing ES6 Arrow F...

Use CSS to draw a file upload pattern

As shown below, if it were you, how would you ach...