Skip to content

Instantly share code, notes, and snippets.

@cuonggt
Created September 16, 2015 16:38
Show Gist options
  • Save cuonggt/5f19e1d3c05af122a7b2 to your computer and use it in GitHub Desktop.
Save cuonggt/5f19e1d3c05af122a7b2 to your computer and use it in GitHub Desktop.
Setting Up A Database on Mac OS X 10.10 Yosemite

Cài đặt Database

MySQL

Cài bằng Homebrew:

brew install mysql

Để launchd khởi động mysql khi đăng nhập:

ln -sfv /usr/local/opt/mysql/*plist ~/Library/LaunchAgents

Để khởi động mysql luôn:

launchctl load ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist

Mặc định tài khoản mysql là root và không mật khẩu.

PostgreSQL

Cài bằng Homebrew:

brew install postgresql

Để launchd khởi động postgresql khi đăng nhập:

ln -sfv /usr/local/opt/postgresql/*plist ~/Library/LaunchAgents

Để khởi động postgresql luôn:

launchctl load ~/Library/LaunchAgents/homebrew.mxcl.postgresql.plist

Mặc định tài khoản postgresql là tên người dùng hiện tại của bạn và không mật khẩu.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment