connecting to mysql from cygwin

MysqlCygwin

Mysql Problem Overview


I can successfully connect to MySQL from a DOS prompt, but when I try to connect from cygwin, it just hangs.

$/cygdrive/c/Program\ Files/MySQL/MySQL\ Server\ 5.1/bin/mysql -u root -p

What's wrong?

Mysql Solutions


Solution 1 - Mysql

I just came across this, and when I read someone's mention of it being a windows/DOS command that you run in cygwin I did a which mysql and that gave me:

$ which mysql
/cygdrive/c/Program Files/MySQL/MySQL Server 5.5/bin/mysql

So I ran the cygwin Setup.exe searched for "mysql" and installed the latest "mysql client". Now which mysql looks like:

$ which mysql
/usr/bin/mysql

And the MySQL command works in cygwin :)

Though it's an old question, it would be nice to have the actual answer here, as people (like myself) might still stumble across it.

If your attempts to run the MySQL client from Cygwin return the following error:

$ mysql -u root -p
Enter password:
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mysql.sock' (2)

Then you can fix it by adding the explicit -h 127.0.0.1 options to the command line, as in:

$ mysql -u root -p -h 127.0.0.1

Updates based on comments:

To avoid specifying -h 127.0.0.1 on the command line every time you connect, you can add:

[client]
host=127.0.0.1

to the file /etc/my.cnf

On some installations of Cygwin, specifying the host with -h might not be enough. If so, try also specifying:

--protocol=tcp

or add

protocol=tcp

to the config file.

Solution 2 - Mysql

Assuming that you have a native Windows build of MySQL, there is a terminal emulation incompatibility between DOS (command prompt) windows and bash. The prompt for mysql isn't showing up.

To confirm this, type a command and return - it will probably work, but the prompt and the echo of the command (what you're typing) is getting lost.

There may be a workaround in either the CYGWIN sytem properties or in bash, but I've never taken the time to work this one out.

Solution 3 - Mysql

Other answers lack the following key detail:

Cygwin has two shells:

  1. Default: c:\cygwin\bin\mintty.exe
  2. Basic: c:\cygwin\Cygwin.bat (which launches c:\cygwin\bin\bash.exe)

The Win32 MySQL can write properly to #2, but not #1, because Win32 MySQL cannot probe stdin properly (thanks @PeterNore)

Want to know if you're using Win32 MySQL? Use which, e.g.

$ which mysql
/cygdrive/c/Program Files/MySQL/MySQL Server 5.1/bin/mysql

Bonus: Cygwin guide to overcoming path problems (thanks @Dustin)

Solution 4 - Mysql

Solution 5 - Mysql

Run bash from the cmd.exe executable and then mysql will work inside bash.

  1. Create a shortcut for cmd.exe on your desktop.
  2. Open up the properties for the shortcut and change the startup directory to the cygwin bin directory (usually C:\cygwin\bin).
  3. Add "/c bash.exe" to the end of the command in the target parameter.

This will run bash under the windows cmd.exe environment and when you attempt to run mysql it will execute as you would expect. This is working under windows 7 but has not been tested in any other version.

Solution 6 - Mysql

  1. Put cygwin bin directory in path env variable.
  2. Use command window by running cmd
  3. Run bash -l in cmd window

Then MySQL can be run without problem.

Solution 7 - Mysql

Svend Hansen's answer is the right one:

  • Install windows mysql server files (from mysql-5.5.25-win32.msi for example)

  • Install Cygwin mysql client with cygwin installer (setup.exe)

  • Connect to your server in a cygwin window using cygwin client "mysql -u[user] -p[Password] -h[host]", in my case "mysql -uroot -pXXXX -h127.0.0.1"

I think that when the question was posted, the cygwin setup did not provide mysql components, which is solved now.

Solution 8 - Mysql

I have created a semi-fix for this that satisfies me. I ran cygwin.bat in cmd.exe, then typing mysql in- everything worked fine.

I realized right there that the problem was mintty.

Easy solution? Download Console2, and under settings you can point it to the cygwin shell. Restart Console2, run mysql and the output appears.

This is advantageous anyways, because Console2 has a more robust interface/customization than Mintty. I really like the transparency and color mapping options.

Solution 9 - Mysql

Do This:

  1. just copy ur mysql.exe from C:\Program Files\MySQL\MySQL Server 5.5\bin
  2. paste this mysql.exe in C:\cygwin\usr\local\bin
  3. now run which mysql, It will

Solution 10 - Mysql

Althoug Svend Hansen answer has some points, another thing is the PATH in Environment variables - if the path to mysql is before that of cygwin

which mysql

will show

/cygdrive/c/Program Files/MySQL/MySQL Server 5.5/bin/mysql

otherwise it will show the cygwin client.

As reference Wikipedia says:

> Some programs may add their directory to the front of the PATH > variable's content during installation, to speed up the search process > and/or override OS commands.

Solution 11 - Mysql

Disclaimer: The following solved this issue for me under MinTTY on MinGW/MSYS. From research, I believe this same root cause affects Cygwin as well.

Answer is posted here: https://stackoverflow.com/a/23164362/1034436

In a nutshell, you'll need to prepend your mysql command with winpty's console.exe (or have aliases that does so). This solution worked with native Windows MySQL executables and not a special cygwin/mingw build. You do, however, have to compile winpty, but that was simple and painless, and worked as per their documentation for me.

Note: This also solved my issue with several other native Windows console applications, namely Python and Mercurial with OpenSSH.

Solution 12 - Mysql

  1. Download Cygwin

  2. Install mysql client app

  3. create an alias in .bashrc file

    alias mysql='mysql -h 127.0.0.1'

  4. execute source .bashrc

Now you can connect to mysql

mysql -u user -p

Solution 13 - Mysql

Reinstall cygwin and during reinstallation search for mysql in packages, install the mysql client and then it would work fine.

Solution 14 - Mysql

Found this question today 2018-03-18 looking for some answers to

ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mysql.sock' (2 "No such file or directory")

The file /etc/my.conf references config files in /etc/my.cnf.d I added this to /etc/my.cnf.d/client.cnf:

[client]
host=127.0.0.1
protocol=tcp

After that I was able to access the local windows MySQL instance from a cygwin terminal using mysql -u root -p

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionMCSView Question on Stackoverflow
Solution 1 - MysqlSvend HansenView Answer on Stackoverflow
Solution 2 - MysqlKen GentleView Answer on Stackoverflow
Solution 3 - MysqlDonal LaffertyView Answer on Stackoverflow
Solution 4 - MysqlDustinBView Answer on Stackoverflow
Solution 5 - MysqlClive StellingsView Answer on Stackoverflow
Solution 6 - MysqlSteve QianView Answer on Stackoverflow
Solution 7 - MysqlBenoit PhilipponView Answer on Stackoverflow
Solution 8 - MysqltryexceptcontinueView Answer on Stackoverflow
Solution 9 - Mysqluser2814726View Answer on Stackoverflow
Solution 10 - MysqlBakudanView Answer on Stackoverflow
Solution 11 - Mysqlmartian111View Answer on Stackoverflow
Solution 12 - MysqlRaul RomaniView Answer on Stackoverflow
Solution 13 - MysqlPraveen KishorView Answer on Stackoverflow
Solution 14 - MysqlKen IngramView Answer on Stackoverflow