how to add mysql to path global variables

0

I have recently installed MySQL and am trying to access it through my command prompt by simply typing in MySQL.

I believe I need to add it to my PATH globals. How can I do this?

nprgrmr

Posted 2014-05-26T15:11:03.643

Reputation: 1

Question was closed 2014-05-29T17:04:09.963

Answers

1

Open cmd.exe and enter

rundll32 sysdm.cpl,EditEnvironmentVariables

Now you can scroll to the PATH variable and edit it.

For that, just put an ; at the end of the old value, and add the path of the mysql\bin folder behind it.

You need to close and restart your current cmd instaces, to use the new PATH.

Peter Lamby

Posted 2014-05-26T15:11:03.643

Reputation: 362