运行命令提示符上的 jps 命令

huangapple go评论79阅读模式
英文:

Run jps on command promt

问题

我安装了Hadoop并尝试运行它。终端显示所有内容都已启动,但当我运行jps命令时,显示:

'jps'不被识别为内部或外部命令,
可执行的程序或批处理文件。

我设置了JAVA_HOME=C:\Progra~1\Java\jre1.8.0_261,以及path=C:\Progra~1\Java\jre1.8.0_261\binC:\Program~1\Java\jre1.8.0_261\legal\jdk在环境变量中,但当我在命令提示符中键入jps时,显示:不被识别为内部或外部命令。
我不知道该怎么办,请帮帮我。

英文:

I installed Hadoop and tried to run it. The terminal shows that everything has been started but when I run jps command it shows :

'jps' is not recognized as an internal or external command,
operable program or batch file.

I set JAVA_HOME= C:\Progra~1\Java\jre1.8.0_261 and path = C:\Progra~1\Java\jre1.8.0_261\bin and C:\Program~1\Java\jre1.8.0_261\legal\jdk in enviroment, but when I type jps in command prompt it shows : Not recognized as an internal or external command.
I don't know what can I do, Help me, please.

答案1

得分: 0

看起来在您指定的系统环境变量的 bin 目录中找不到 jps 可执行文件。如果您在系统中安装了 jdk1.8.0_26,并且它位于 C:\Program Files 目录中,那么它应该位于 C:\Program Files\Java\jdk1.8.0_261\bin 内。尝试像这样指定 JAVA_HOME

  1. 前往 控制面板 -> 系统 -> 高级系统设置 -> 环境变量
  2. 添加一个名为 JAVA_HOME 的新路径变量:
    JAVA_HOME=C:\Program Files\Java\jdk1.8.0_261
  3. 系统变量 中选择 Path,然后点击 编辑
  4. 删除现有的 Java 路径,将新路径添加为 %JAVA_HOME%\bin
  5. 现在,打开命令窗口,输入 jps,然后按 ENTER 键。

注意:您可以从 此处 下载 JDK。

英文:

It looks like the jps executable is no present in the bin directory that you've specified in system environment variable. It should be inside C:\Program Files\Java\jdk1.8.0_261\bin if you have jdk1.8.0_26 installed in your system in the location C:\Program Files. Try specifying the JAVA_HOME like this:

  1. Go to Control Panel -> System -> Advanced System Settings ->
    Environment Variables
    .
  2. Add a new path variable called JAVA_HOME:
    JAVA_HOME=C:\Program Files\Java\jdk1.8.0_261
  3. Select Path from System Variables and click Edit.
  4. Remove the existing Java path and add the new path as %JAVA_HOME%\bin
  5. Now, open command window, type jps and hit ENTER.

> Note: You can download JDK from here

huangapple
  • 本文由 发表于 2020年8月28日 05:05:49
  • 转载请务必保留本文链接:https://go.coder-hub.com/63624170.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定