概要
本項ではデータベースサーバー「MySQL Server 5.6」を、パッケージ管理ツール「Homebrew」を利用して macOS にインストールする手順について解説します。
MySQL5.6を検索しよう
まずは Homebrew で MySQL 5.6 が提供されていることを確認するために、brew search コマンドを利用して検索してみます。 次のように mysql@5.6 を指定して検索してみましょう。 次のように Formulae に mysql@5.6 と表示されればOKです。
$ brew search mysql@5.6
==> Formulae
mysql@5.6
MySQL5.6をインストールしよう
Homebrew で MySQL5.6 が提供されていることが確認できたら、さっそくインストールしてみましょう。 次のように brew install コマンドに mysql@5.6 を指定します。
$ brew install mysql@5.6
Updating Homebrew...
(中略)
==> Downloading https://homebrew.bintray.com/bottles/mysql@5.6-5.6.41.high_sierra.bottle.tar.gz
######################################################################## 100.0%
==> Pouring mysql@5.6-5.6.41.high_sierra.bottle.tar.gz
==> Caveats
A "/etc/my.cnf" from another install may interfere with a Homebrew-built
server starting up correctly.
MySQL is configured to only allow connections from localhost by default
To connect:
mysql -uroot
mysql@5.6 is keg-only, which means it was not symlinked into /usr/local,
because this is an alternate version of another formula.
If you need to have mysql@5.6 first in your PATH run:
echo 'export PATH="/usr/local/opt/mysql@5.6/bin:$PATH"' >> ~/.bash_profile
For compilers to find mysql@5.6 you may need to set:
export LDFLAGS="-L/usr/local/opt/mysql@5.6/lib"
export CPPFLAGS="-I/usr/local/opt/mysql@5.6/include"
To have launchd start mysql@5.6 now and restart at login:
brew services start mysql@5.6
Or, if you don't want/need a background service you can just run:
/usr/local/opt/mysql@5.6/bin/mysql.server start
==> Summary
🍺 /usr/local/Cellar/mysql@5.6/5.6.41: 339 files, 154.3MB
上の例のようにビールのマークが表示されれば、インストールは完了です。
MySQL5.6にパスを通そう
インストールが完了する際に以下のような記述が表示されています。
mysql@5.6 is keg-only, which means it was not symlinked into /usr/local
このメッセージが意味するところは「インストールはしたけどパスは通していない」ということです。 さらに表示されたメッセージに以下のような記述があります。
If you need to have mysql@5.6 first in your PATH run:
echo 'export PATH="/usr/local/opt/mysql@5.6/bin:$PATH"' >> ~/.bash_profile
~/.bash_profile に export コマンドでパスを通すような記述を追加すれば、パスを通すことができると言っていますので、言われた通りにコマンドを実行します。
$ echo 'export PATH="/usr/local/opt/mysql@5.6/bin:$PATH"' >> ~/.bash_profile
念のため ~/.bash_profile ファイルを開いて、末尾に次のように2行追加されたことを確認しましょう。
export PATH="/usr/local/opt/mysql@5.6/bin:$PATH"
最後に、macOS にログインし直すか、もしくは次のようなコマンドで ~/.bash_profile を実行し直します。 (~/.bash_profile は、ユーザが macOS にログインした時に実行されるファイルですので、再ログインするか、手動で実行してあげるというわけです)
$ source ~/.bash_profile
インストールしたMySQL5.6のバージョンを確認しよう
上記までの手順で MySQL のインストールと初期設定が完了しています。 インストールが正しく完了したことを確認する意味でも、MySQL のコマンドを叩いてみて動くことを確認しましょう。 ここではインストールしたMySQLのバージョンを表示する mysql –version コマンドを実行し、バージョンが表示されることを確認します。 次のようにバージョンが表示されればOKです。
$ mysql --version
mysql Ver 14.14 Distrib 5.6.41, for osx10.13 (x86_64) using EditLine wrapper
MySQL5.6を起動しよう
それでは MySQL 5.6 を起動してみましょう。 インストールした際に以下の記述が表示されました。
To have launchd start mysql@5.6 now and restart at login:
brew services start mysql@5.6
上記のように brew services start mysql@5.6 コマンドで起動することができますので、コマンドを実行します。
$ brew services start mysql@5.6
==> Tapping homebrew/services
Cloning into '/usr/local/Homebrew/Library/Taps/homebrew/homebrew-services'...
remote: Counting objects: 14, done.
remote: Compressing objects: 100% (10/10), done.
remote: Total 14 (delta 0), reused 7 (delta 0), pack-reused 0
Unpacking objects: 100% (14/14), done.
Tapped 1 command (43 files, 55.5KB).
==> Successfully started `mysql@5.6` (label: homebrew.mxcl.mysql@5.6)
Successfully started `mysql@5.6` と表示されれば起動完了です。
MySQL5.6に接続しよう
MySQL5.6 が起動できたら、さっそく接続してみましょう。 Homebrew でインストールしたばかりの MySQL には、次のように mysql -uroot コマンドで接続することができます。
$ mysql -uroot
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.6.41 Homebrew
Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>
上のように mysql> とコマンドを待ち受けるモードになれば、ログイン成功です! あとはSQLを入力して自由に利用しましょう。 なお MySQL から脱出する場合は、quit コマンドを実行すると抜けることができます。
次にやるべきこと
ここまでで MySQL 5.6 の導入手順は終わりですが、MySQL 5.6 の初期状態では root としてログインするのにパスワードは要求されませんし、安全に利用するための設定がされていません。 次のステップとして、次の記事を参考に、MySQL 5.6 を安全に利用するためのセットアップをしてはいかがでしょうか。