linux jps命令报错-bash: jps: command not found 解决方案

参考   https://blog.csdn.net/zhanglu1236789/article/details/50445261

1.要知道jps跟jdk有关,也就是跟自己安装的java相关

2.知道自己java的安装路径   whereis java

3. which java 查看

这是我jps有错误命令的情况下报的,显示no java

4.建立java软链接  

sudo ln -s /usr/local/java/jdk1.8.0_152/bin/java /usr/bin/java

5. 在/etc/profile 中添加java 环境变量,并source /etc/profile

linux jps命令报错-bash: jps: command not found 解决方案_第1张图片

6.jps 发现命令已经好使了

另外一种方法

安装jdk,发现把环境变量写在 /etc/profile 上会出现jps无效,当把环境变量写入  ~/.bashrc后  source ~./bashrc jps立刻就可以使用

 

 

你可能感兴趣的:(linux)