Cygwin - Windows の MySQL へ TCP 接続!
Updated:
以前、Cygwin から Windows ネイティブの MySQL へ接続することに関する話をしました。
今回も関連したメモ的な話です。 それは、Cygwin のコマンドラインから Windows ネイティブの MySQL へのログインについてです。
前述の過去記事でも紹介していますが、Windows の MySQL は Unix ソケットは使用せず、TCP 接続するようになっています。
ですから、通常
$ mysql -u hoge -p
でログインできるところが、以下のようにエラーとなってしまいます。
$ mysql -u hoge -p
Enter password:
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)
TCP 接続でのログイン方法
Cygwin のコマンドラインから Windows ネイティブ の MySQL へのログインは、以下のようにオプションを指定することで可能になります。
$ mysql --protocol=TCP -u hoge -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 13
Server version: 5.5.20 MySQL Community Server (GPL)
Copyright (c) 2000, 2011, 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>
これだけです。
以上。
Comments