본문 바로가기
OS/Linux

리눅스 사용자 추가 및 변경 (CentOS 사용자 변경)

by 댓츠굿 2017. 9. 17.


1. 사용자 추가


root 계정으로 로그인하여 아래와 같이 입력


[root@localhost ~]# useradd testuser

[root@localhost ~]# 

[root@localhost ~]# passwd testuser123

Changing password for user testuser.

New password: (새로운 패스워드 입력)

Retype new password: (새로운 패스워드 재입력)

passwd: all authentication tokens updated successfully.

[root@localhost ~]#




2. 사용자 변경 명령어: su - [유저명]


su - testuser


cf.) root 계정으로 변경:

      su - root

      root 비밀번호 입력




3. 유저 비밀번호 변경


[root@localhost ~]# passwd testuser12345

Changing password for user testuser.

New password: (새로운 패스워드 입력)

Retype new password: (새로운 패스워드 재입력)

passwd: all authentication tokens updated successfully.

[root@localhost ~]#




반응형