解决bash: mysql: command not found 的方法

Posted ㄓㄤㄑㄧㄤ

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决bash: mysql: command not found 的方法相关的知识,希望对你有一定的参考价值。

[email protected] ~]# MySQL -u root
-bash: mysql: command not found

原因:这是由于系统默认会查找/usr/bin下的命令,如果这个命令不在这个目录下,当然会找不到命令,我们需要做的就是映射一个链接到/usr/bin目录下,相当于建立一个链接文件。
首先得知道mysql命令或mysqladmin命令的完整路径,比如mysql的路径是:/usr/local/mysql/bin/mysql,我们则可以这样执行命令:

# ln -s  /usr/local/mysql/bin/mysql  /usr/bin

注意,上面是小写的L不是I。

以上是关于解决bash: mysql: command not found 的方法的主要内容,如果未能解决你的问题,请参考以下文章

解决bash: mysql: command not found 的方法

centos解决bash: service: command not found 错误

解决linux mysql命令 bash: mysql: command not found 的方法

Linux环境下mysql报错:bash: mysql: command not found 的解决方法

Linux 登录 MySQL 报错, 解决bash: mysql: command not found 的方法

一次bash: docker: command not found bash: yum: command not found的解决