본문 바로가기
IT/PHP

※Cent OS7에서의 변경사항

by 혁이 2017. 4. 21.
반응형




Cent OS 7에서는 5,6에서 변경된 사항이있는데요.

chkconfig  -->systemctl 로

mysql -->mariaDB로 교체되었습니다.


1.chkconfig


기존 문법은

 chkconfig service on/off

chkconfig --list|grep service

등등에서


systemctl enable/unable service

systemctl |grep service

systemctl start/stop/restart service

로 명령가능합니다.



2.mysql


Cent Os 7에서는 Maria DB로 교체되었습니다.

그래서 일반 yum install mysql을 하면 설치가 안됩니다 ㅠㅠㅠ

i)Repository 설정하기

mysql을 다운받을 수 있는 Repository 경로를 설정합니다.



ii)mysql 설치하기

#yum install -y mysql-commnity-server

로 설치가 가능합니다.


반응형