How to Reduce SSH Login Grace Time in the Server
How to Reduce SSH Login Grace Time in the Server
Date: 15-5-2021
Step 1: Login to server via SSH.
Step 2: Use below command to open sshd config file.#vim /etc/ssh/sshd_config
Step 3: The default value is 2 minutes to login. If you reduce it to 1 minute enter the below detail in the config file.LoginGraceTime 1m
Step 4: Restart the sshd service.#systemctl restart sshd
Thank you!