Depending on how you installed it, it may simply not be in your PATH variable. Try:
locate mysql
OR
whereis mysql
And then execute with full path:
/path/to/mysql
Where /path/to/mysql
Is what you find from one of the above 2 commands, for example:
/usr/local/mysql/bin/mysql -u root -p
Might be what you use.
HTH
Cool
|