Steps to create Users in Linux (CentOS7)

kumkumsharma

Administrator
Staff member
Add a new user:
  • Login to server as root user.
  • Now you have to add new user with adduser command.
Code:
adduser username
Here you have to replace username with your desired user which you want to create.
  • After creating user you have to set password for it with passwd command.
Code:
passwd username
  • You have to again type password of your created user.
NOTE: Always use STRONG and COMPLEX password for your user.
 
Top