LoginSignup
3
4

More than 5 years have passed since last update.

Homebrewで古いバージョンをインストールする

Posted at

例えばMySQL5.6をインストールしたいのに普通にHomebrewからインストールすると5.7が入ってしまったりするときがあります。
昔はデフォルトで入っているHomebrew-versionsを使えば入れることができたのですが、現行のものには入っていないため、手動でリポジトリを加える必要があります。

$ brew update
$ brew tap homebrew/versions
$ brew search mysql

mysql56 というのが見つかるかと思います。

$ brew install homebrew/versions/mysql56
$ mysql --version

5.6系が入っていたら完了です。

3
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
4