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
- apache 연동
- httpd-info.conf
- httpd-default.conf
- CentOS
- httpd-dav.conf
- vimrc 옵션
- MySQL 5.1.41
- PHP 5.2 .ini
- Node.js apache 연동
- PHP 5.2.17 .ini
- httpd.conf
- httpd-mpm.conf
- Repository
- httpd-autoindex.conf
- jQuery
- MySQL
- node.js
- python 3.X 소스 설치
- Mod_Security 룰 셋
- mod_unique_id
- Node.js 소스 설치
- gcc update
- httpd-vhosts.conf
- epel repository
- CentOS 6
- httpd 2.2.32
- CentOS 6.10
- unique_id
- vim color scheme
- python 3.5.10
Archives
- Today
- Total
곰시기's
[Linux] CentOS 23. 시작 프로그램 등록과 삭제 ( chkconfig ) 본문
시작프로그램 목록, 등록, 삭제 - chkconfig
- chkconfig란?
- linux 서버가 부팅될 때 실행 될 프로그램을 설정하는 역할을 하는 유틸리티
- 서버 부팅시 프로그램 리스트와 run-level별 실행여부 등을 확인하거나 설정할 수 있다.
- run-level표는 >>여기<< 페이지의 최하단에 있는 init에서 확인 가능하다
- linux 서버가 부팅될 때 실행 될 프로그램을 설정하는 역할을 하는 유틸리티
- 옵션
옵션 설명 --list 시작프로그램 목록 확인 --add 시작프로그램 추가 --del 시작프로그램 삭제 --level 시작프로그램 런 레벨별 등록 - 사용법
- # chkconfig [옵션] {타입} [프로그램] {모드}
- list [프로그램]
- # chkconfig --list {프로그램}
chkconfig --list
- # chkconfig --list {프로그램}
- add
- # chkconfig --add [프로그램]
- # chkconfig --add [프로그램]
- del
- # chkconfig --del [프로그램]
- level {level} {타입} [프로그램] {on|off|reset|resetpriorities}
- # chkconfig --level {run-level} [프로그램] on
- # chkconfig --level {run-level} [프로그램] on
- list [프로그램]
- # chkconfig [옵션] {타입} [프로그램] {모드}
'Sever > Linux Command' 카테고리의 다른 글
[Linux] CentOS 25. 프로세스 관리와 모니터링 (1) ( nice, renice ) (0) | 2020.11.27 |
---|---|
[Linux] CentOS 24. 파일 시스템 관리 ( fdisk, badblocks, mkfs ) (0) | 2020.11.24 |
[Linux] CentOS 22. 에디터 ( vim ) (0) | 2020.11.16 |
[Linux] CentOS 21. 패키지 관리 ( rpm, yum ) (0) | 2020.11.16 |
[Linux] CentOS 20. 디스크 추가 ( mount, umount ) (0) | 2020.11.09 |
Comments