Mysql出现:mysql: command not found,怎么办?

3560阅读 0评论2020-12-10 starb6
分类:Mysql/postgreSQL

sh-3.2# mysql -u root -p

sh: mysql: command not found

: 

sh-3.2# cd ~  //进入根目录

sh-3.2# pwd

/var/root

sh-3.2# ls -a .bash*。//看一看.bash_file文件在不在。不在就建一个。

.bash_history .bash_profile

sh-3.2# more .bash_profile

PATH=$PATH:/usr/local/mysql/bin //看看这行有没有,没有就加上。

sh-3.2# mysql -u root -p

sh: mysql: command not found

sh-3.2# source ~/.bash_profile  //然后执行一下。就解决了。

sh-3.2# mysql -u root -p


上一篇:The Rows Holding the Group-wise Maximum of a Certain Column .
下一篇:Python The beginning....