Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- httpd-autoindex.conf
- python 3.5.10
- httpd-vhosts.conf
- PHP 5.2.17 .ini
- MySQL
- mod_unique_id
- httpd-dav.conf
- Repository
- Node.js 소스 설치
- CentOS 6.10
- httpd-default.conf
- vimrc 옵션
- httpd 2.2.32
- apache 연동
- MySQL 5.1.41
- unique_id
- CentOS 6
- epel repository
- python 3.X 소스 설치
- jQuery
- Node.js apache 연동
- gcc update
- PHP 5.2 .ini
- Mod_Security 룰 셋
- CentOS
- httpd-mpm.conf
- httpd-info.conf
- node.js
- httpd.conf
- vim color scheme
Archives
- Today
- Total
목록usermod (1)
곰시기's
[Linux] CentOS 07. 사용자 관리 ( useradd, usermod, userdel )
1. 계정 확인 # cat /etc/passwd | grep [계정명] 2. 계정 생성 1) # useradd [옵션] [값] [계정명] - /etc/default/useradd 파일에 기본 설정이 되어있다. 2) 옵션 옵션 설명 -d 계정의 홈 디렉토리를 지정한다. # useradd -d [경로] [계정명] -D /etc/default/useradd에 기본으로 설정된 내용을 보여준다. -g 그룹을 지정하여 계정을 생성한다. # useradd -g [그룹명] [계정명] : 그룹이 먼저 생성되어 있어야 한다. -c 계정에 comment를 추가한다. -s 사용자 쉘을 지정하여 생성 # passwd [계정명] -> 비밀번호 입력 -> 비밀번호 확인 3. 계정 수정 1) # usermod [옵션] [값] [계정..
Sever/Linux Command
2020. 10. 30. 12:32