facebook twitter hatena line email

Mac/インストール/mysql

提供: 初心者エンジニアの簡易メモ
2016年12月16日 (金) 16:39時点におけるAdmin (トーク | 投稿記録)による版

移動: 案内検索

brewでインストール

$ brew install mysql

起動

mysql.server start

停止

mysql.server stop

自動起動

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

brewでインストールしようとしたができない場合は・・・

$ brew install mysql
==> Installing mysql dependency: cmake
==> Downloading https://downloads.sf.net/project/machomebrew/Bottles/cmake-2.8.10.1.mountainlion.bottle.tar.gz

pkgからインストール

  1. http://dev.mysql.com/downloads/mysql/5.0.html#macosx-dmg
  2. oracleアカウントでログイン
  3. Mac OS X 10.5 (x86, 64-bit), DMG をDL
  4. pkgファイルを2つクリックでインストール
  5. prefpaneファイルをクリックでインストール

起動

sudo /Library/StartupItems/MySQLCOM/MySQLCOM start

停止

sudo /Library/StartupItems/MySQLCOM/MySQLCOM stop

パス追加

$ vi ~/.bash_profile
export PATH=$PATH:/usr/local/mysql/bin
$ source ~/.bash_profile