'Mac'에 해당되는 글 2건

  1. 2014.11.10 맥북 mariadb 설치하기
  2. 2014.11.10 맥북 homebrew 설치하기

맥북 mariadb 설치하기

맥북 2014. 11. 10. 22:43

Homebrew 설치 되어 있다는 가정하에 진행함.

terminal 실행후 아래 두 명령어를 실행하면 끝.


>brew update


>brew install mariadb


mariadb 설치후 db실행

>mysql.server start


mariadb 설치후 db stop

>mysql.server stop


mariadb 접속

mysql -uroot


맥북 실행시 mariadb 실행하려면

> ln -sfv /usr/local/opt/mariadb/*.plist ~/Library/LaunchAgents

> launchctl load ~/Library/LaunchAgents/homebrew.mxcl.mariadb.plist



Posted by 무세1
,

맥북 homebrew 설치하기

맥북 2014. 11. 10. 22:26

맥북에 homebrew 설치할때, 일단 terminal 실행한다.


ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"


위 명령어를 실행하면 설치를 진행한다.

설치진행시 패스워드를 입력하라는 창이 나오면 패스워드를 입력한다.


설치 진행은 아래와 같이 진행된다.



Posted by 무세1
,