红联Linux门户
Linux帮助

MySQL问题解决:-bash:mysql:command not found

发布时间:2016-02-21 16:21:57来源:linux网站作者:零点-一条路走到底

MySQL问题解决:-bash:mysql:command not found


问题:
[root@linux115 /]# mysql -uroot -p
-bash: mysql: command not found

因为mysql命令的路径在/usr/local/mysql/bin下面,所以你直接使用mysql命令时,
系统在/usr/bin下面查此命令,所以找不到了


解决办法是:

ln -s /usr/local/mysql/bin/mysql /usr/bin 做个链接即可。


本文永久更新地址:http://www.linuxdiyf.com/linux/18275.html