※ vagrantやローカル上には無いmysqlDBにログインしたいけど、Macは極力汚したくない(余計なものを入れたくない)人向け
- インストール
cmd
$ brew install mysql --client-only
- 確認
cmd
$ mysql --version
mysql Ver 14.14 Distrib 5.7.12, for osx10.11 (x86_64) using EditLine wrapper
- 使ってみる
$ mysql -h192.168.33.91 -u${mysql_user} -p${mysql_password}
mysql: [Warning] Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.6.28-0ubuntu0.15.04.1-log (Ubuntu)
Copyright (c) 2000, 2016, 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>
--> OK! (cli上でpasswordを使うなと怒られているが、テストなので気にしない)