英文:
Java not running on Windows server 2019
问题
我已经持续很长一段时间了。我需要在一个新的未激活的 Windows Server 2019 Essentials 上运行 JRE 6,以便能够为一些服务器(旧的 IBM 和 DELL 机架)使用非常老旧的远程控制器。
无论我安装哪个版本的 Java,它都无法运行。我在右下角或正在运行的服务中都看不到它。我知道这似乎非常基础,但我在网上找不到解决方案。
我是否漏掉了什么?我在网上找到的所有内容都是关于将 Java 添加到环境变量中的建议,但那是针对不同问题的。我拼命尝试过,但当然没有解决问题。
英文:
I'm on this for a really long time. I need to have JRE 6 running on a new nonactivated Windows server 2019 essentials to be able to use a very old remote controller for some servers (old IBM & DELL racks).
No matter what version of java I install, it's just not running. I don't see it in the bottom right corner or in the running services. I know it seems very basic but I couldn't find a solution online.
Am I missing something? All I could find online is suggestions to add java to the environment variables but that is for a different issue. I tried it desperately but of course it didn't solve the problem.
答案1
得分: 2
Java,更确切地说是Java虚拟机(JVM),不是在后台运行的东西。JVM用于启动特定的应用程序。java.exe
或类似的可执行文件的解析和调用方式将取决于特定的应用程序。
你通常在Windows任务托盘区域看到的是Java更新检查程序(Jucheck.exe
)。是否存在此服务将取决于所选的安装选项。也可能是因为一个非常旧的Java 6根本没有包含它。
英文:
Java, or more precisely the Java Virtual Machine (JVM), is not something that runs in the background. JVM is used to start specific applications. How the java.exe
or similar executable will be resolved and invoked will depend on the specific application.
What you usually see in the Windows task tray area is a the Java update checker (Jucheck.exe
). Whether or not this service is present will depend on selected installation options. It also might be that a very old Java 6 simply does not ship it.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论