2017-01-14 22:34:00
1. Homebrew를 이용하여 MariaDB 설치하기
1-1. 마리아DB 설치
$ brew install mariadb
1-2. 마리아DB 기본 명령어
$ mysql.server status : 상태확인
$ mysql.server start : 마리아DB 서비스 시작
$ mysql.server stop : 마리아DB 서비스 종료
1-3. 마리아DB 접속
$ mysql -u root
아직 비밀번호 입력을 하지 않아도 접속이 된다. 이러면 안 되므로 비밀번호를 설정하기로 함
1-4. 마리아DB root 계정 비밀번호 설정
$ mysql_secure_installation
위 명령어를 입력하면 기존 비밀번호를 누르라고 하는데 한번도 설정한 적 없으므로 그냥 엔터 입력
Set root password? 라고 하면 Y 입력
사용할 비밀번호를 2번 입력하고, 아래부터는 개인 입맛대로 설정하면 됨.
Remove anonymous users? Y
Disallow root login remotely? Y
Remove test database and access to it? Y
Reload privilege tables now? Y
1-5. 마리아 DB 테스트
$ mysql.server start
$ mysql -u root -p
비밀번호 입력
[MariaDB [(none)]> \h # 도움말 보기
Comments