[Linux CentOS - (29) ] systemctl enable mysqld (CentOS7 ↑) // (CentOS6 ↓) chkconfig --level 345 mysqld on : 부팅 자동 시작
CentOS6이하 버전에서의 번거로움을 7버전 이상에서는 enable로 간편히 처리한다.
# systemctl enable httpd
# systemctl enable mysqld
상태는 이렇게 확인하면 된다.
# systemctl status httpd
CentOS 7 ↑이상 버전 CentOS 6 ↓ 이하 버전
# cd /etc/rc.d/init.d
# chkconfig --add mysqld [ENTER]
# chkconfig --level 345 mysqld on [ENTER]
345가 활성되면 재부팅 시 자동으로 기동된다.
그외 옵션은 -del 등이 있다. ( chkonfig -hlep로 저 참조 하도록 )
'◽ CentOS' 카테고리의 다른 글
[CentOS - 이슈 - (2) ] 리눅스(Linux): 개행문자(Ctrl M) ^M 제거 방법 (0) | 2020.07.22 |
---|---|
[CentOS - vi 명령어 - (3) ] dd(지우기), :u(취소하기//undo), Ctrl+r(작업취소//redo) (0) | 2020.07.22 |
[Linux CentOS - (30) ] setenforce 1/0 : SELinux 설정하기, selinux config 바꾸기 (0) | 2020.07.21 |
[CentOS] ( CentOS 6.6 ) MariaDB 5.5 버전 설치하기 (0) | 2020.07.17 |
[Linux CentOS - (28) ] ps : 프로세스 관리 // 옵션 정리 (0) | 2020.07.15 |
[CentOS - vi 명령어 - (2) ] :set nu 라인 보여주기 (0) | 2020.07.13 |
[Linux CentOS - 터미널 단축키 - (2) ] Ctrl + Shift + V : 붙여넣기 (0) | 2020.07.10 |