文档首页> Linux网管技术> centos系统 command not found解决方法

centos系统 command not found解决方法

发布时间:2021-05-07 02:01        更新时间:2021-05-28 18:21

当centos系统出现  -bash:  XXXX: command not found错误时

就是说你的 命令的 执行文件不在 /usr/bin 或者 /etc/init.d 中,他就找不到 执行该命令的 文件来执行.

思路是将 该应用的 bin 目录 放入到  profile 文件中就OK了



1、find / -name profile  #找到该文件(这个文件相当于 你在Windows 中加入环境变量那块),一般该文件在 /etc/profile 这里

2、vim profile                 #编辑该文件

3、export PATH="$PATH:/phpstudy/mysql/bin"    

#在该文件中加入 command not found 的应用 bin 目录,这里我是将 mysql 的 bin 放到这里,因为 我是因为 mysqld / mysqldump / mysqladmin 命令用不了

4、source /etc/profile  // 更新配置(不用重启系统)