添加PATH

查看PATH      ehco $PATH       export $PATH

临时生效:你可以自己加上指定的路径,中间用冒号隔开。环境变量更改后,在用户下次登陆时生效,如果想立刻生效,则可执行下面的语句:$source .bash_profile

永久生效通过编辑/etc/profile来改PATH,也可以改家目录下的.bashrc(即:~/.bashrc)

# vim/etc/profile

在文档最后,添加:

export PATH="目录:$PATH"(export PATH=$PATH:/usr/local/mysql/bin

保存,退出,然后运行:

#source/etc/profile


你可能感兴趣的:(mysql,profile,local,source,Export)