출처 : http://yookeun.github.io/mac/2014/11/16/mac-mariadb/
맥에서 homebrew를 이용해서 mariadb를 설치해본다.
환경:OX Yosemite
먼저 <homebrew>를 설치해야 한다. homebrew는 우분투의 apt-get 같은 패키지인스톨 프로그램이라고 생각하면 된다.
위 사이트에서 설치를 진행한다. 설치가 완료된 다음 터미널에서 brew 를 치면 명령어의 설명이 나오면 정상으로 설치된 것이다.
먼저 brew를 업데이트해준다. (최신의 정보로 업데이트된다)
brew update
다음 maridb를 검색해보자 (꼭 할 필요는 없다)
brew search mariadb
검색하면 mariadb가 검색된다. brew에서는 기본적으로 최신버전을 설치하게 된다. 2014.11월 기준으로 mariadb의 최신버전은 10.0.14이다.
brew info mariadb (역시 꼭 할필요는 없다)
mariadb: stable 10.0.14 (bottled)
만약 brew install mariadb로 인스톨하면 위와 같이 stable버전이 설치된다. 자. 이제 설치를 해보자.
brew install mariadb
==> Downloading https://downloads.sf.net/project/machomebrew/Bottles/mariadb-10.0.14_1.yosemite.bottle.tar.gz
... 중략 ...
==> Summary
/usr/local/Cellar/mariadb/10.0.14_1: 524 files, 125M
그러면 위와 같이 설치가 진행이 된다. 이제 세팅을 해준다.
unset TM PDIR
설치된 경로로 이동하자. 10.0.14_1버전이 설치되어 있다. (탭키로 치면 경로나옴)
cd /usr/local/Cellar/mariadb/10.0.14_1/
mariadb의 DB를 설치한다.
mysql_install_db
그러면 아래와 같이 설치가 진행이 된다.
Installing MariaDB/MySQL system tables in '/usr/local/var/mysql' ...
16 18:09:08 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
user created by default.
You can start the MariaDB daemon with:
..중략...
Support MariaDB development by buying support/new features from
SkySQL Ab. You can contact us about this at sales@skysql.com.
Alternatively consider joining our community based development effort:
http://mariadb.com/kb/en/contributing-to-the-mariadb-project/
자. 이제 mariadb를 가동시켜본다.
mysql.server start
...
Starting MySQL
. SUCCESS!
SUCCESS가 나오면 성공이다.
'웹 관련 팁 모음' 카테고리의 다른 글
vsftpd.conf 설정 설명 (0) | 2017.08.08 |
---|---|
우분투 gcc 설치 순서..그대로만 하세요~ (0) | 2017.08.01 |
centos 서버 구입시 기본 세팅... (0) | 2017.07.28 |
이클립스에 UML Generator 를 붙여보자 ) - objectaid (0) | 2014.11.28 |
[펌] 티스토리에서 코드 예쁘게 넣기, syntaxhighlighter 설치/적용/사용법 (0) | 2014.11.28 |