1. 패스워드 바꾸기 (현재 계정의 패스워드 수정)
> passwd
2. 특정 사용자 패스워드 바꾸기
> passwd [username]
3. 최소기한이 되지 않아 암호를 바꿀 수 없는 경우 아래와 같은 메시지 발생
You must wait longer to change your password
4. 위와 같은 메시지 발생시 암호변경에 필요한 최소한의 경과 일수 확인하기
> chage -l [username]
* 아래는 암호를 바꾸면 7일 뒤 암호를 다시 설정할 수 있는 경우
Minimum number of days between password change : 7
5. 기한 설정 바꾸기(root 권한):
case1) 0일 기한 : chage -M0 [username]
case2) 7일 기한 : chage -M7 [username]
반응형
'infra & cloud > linux' 카테고리의 다른 글
[Linux] 사용자 계정 관리 (0) | 2021.04.22 |
---|---|
[Linux] stdin stdout stderr, pipeline/redirect (0) | 2021.03.08 |
[linux] alias (별칭) 생성/조회/수정/삭제 (1) | 2020.05.14 |
[Ubuntu] 양방향 복사붙여넣기 되지 않을 경우 (0) | 2020.01.11 |
Binary file (standard input) matches 에러 (0) | 2019.10.24 |