facebook twitter hatena line email

「Mac/インストール/mysql」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「==brewでインストール== $ brew install mysql ==起動== mysql.server start ==停止== mysql.server stop ==brewでインストールしようとしたができ...」)
 
行4: 行4:
 
==起動==
 
==起動==
 
mysql.server start
 
mysql.server start
 +
 
==停止==
 
==停止==
 
mysql.server stop
 
mysql.server stop
  
 +
==自動起動==
 +
ln -sfv /usr/local/opt/mysql/*.plist ~/Library/LaunchAgents
  
 
==brewでインストールしようとしたができない場合は・・・==
 
==brewでインストールしようとしたができない場合は・・・==

2016年12月16日 (金) 16:39時点における版

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