Mysql command not found

终端配置 PATH

cd ~

如果没有 .bash_profile 文件,则创建

touch .bash_profile

编辑该文件 .bash_profile

export PATH=${PATH}:/usr/local/mysql/bin/

保存增加的内容之后,需要让 .bash_profile 文件生效

source ~/.bash_profile

然后运行

mysql -u  root -p

即可进入 mysql 模式。

你可能感兴趣的:(Mysql command not found)