You can remove old users from your Linux server. This will revoke the user’s SSH access, and remove that user’s file and directory owner
Remove the user
- Log in to your server via SSH.
- Switch to the root user:
sudo su – - Use the userdel command to remove the old user:
userdel user’s username - Optional: You can also delete that user’s home directory and mail spool by using the -r flag with the command:
userdel -r user’s username



