【问题标题】:microsoft/nanoserver docker image fails to start java.exe, while microsoft/windowsservercore succeedsmicrosoft/nanoserver docker image 启动 java.exe 失败,而 microsoft/windowsservercore 成功
【发布时间】:2018-01-17 17:09:00
【问题描述】:

我正在尝试使用来自microsoft/nanoserver 图像的 java 创建一个 Windows docker 图像。

系统信息

> docker version
Client:
 Version:      17.06.0-ce
 API version:  1.30
 Go version:   go1.8.3
 Git commit:   02c1d87
 Built:        Fri Jun 23 21:30:30 2017
 OS/Arch:      windows/amd64

Server:
 Version:      17.06.0-ce
 API version:  1.30 (minimum version 1.24)
 Go version:   go1.8.3
 Git commit:   02c1d87
 Built:        Fri Jun 23 22:19:00 2017
 OS/Arch:      windows/amd64
 Experimental: true

> docker info
Containers: 2
 Running: 0
 Paused: 0
 Stopped: 2
Images: 22
Server Version: 17.06.0-ce
Storage Driver: windowsfilter
 Windows:
Logging Driver: json-file
Plugins:
 Volume: local
 Network: l2bridge l2tunnel nat null overlay transparent
 Log: awslogs etwlogs fluentd json-file logentries splunk syslog
Swarm: inactive
Default Isolation: hyperv
Kernel Version: 10.0 15063 (15063.0.amd64fre.rs2_release.170317-1834)
Operating System: Windows 10 Enterprise
OSType: windows
Architecture: x86_64
CPUs: 1
Total Memory: 5.999GiB
Name: MYSERVER
ID: RKVO:G6SF:7OPN:RR5Y:4DGX:DSZG:MCGO:FTNS:YLWY:2LKH:TRZE:JU76
Docker Root Dir: C:\ProgramData\Docker
Debug Mode (client): false
Debug Mode (server): true
 File Descriptors: -1
 Goroutines: 86
 System Time: 2017-08-09T09:36:17.8905051-07:00
 EventsListeners: 0
Registry: https://index.docker.io/v1/
Experimental: true
Insecure Registries:
 127.0.0.0/8
Live Restore Enabled: false

Dockerfile

Dockerfile 是本文第 4 节的略微修改版本:https://alexandrnikitin.github.io/blog/running-java-inside-windows-container-on-windows-server/

FROM microsoft/nanoserver

RUN powershell -Command iwr 'http://javadl.oracle.com/webapps/download/AutoDL?BundleId=210185' -Outfile 'C:\jre-8u91-windows-x64.exe'
RUN powershell start-process -filepath C:\jre-8u91-windows-x64.exe -passthru -wait -argumentlist "/s,INSTALLDIR=c:\Java\jre1.8.0_91,/L,install64.log"
RUN del C:\jre-8u91-windows-x64.exe

CMD [ "c:\\Java\\jre1.8.0_91\\bin\\java.exe", "-version"]

构建映像

> docker build -t java-nano:jre1.8.0_91 .
Sending build context to Docker daemon  2.048kB
Step 1/5 : FROM microsoft/nanoserver
 ---> 9473d5d31d36
Step 2/5 : RUN powershell -Command iwr 'http://javadl.oracle.com/webapps/download/AutoDL?BundleId=210185' -Outfile 'C:\jre-8u91-windows-x64.exe'
 ---> Running in 33ec7e07b8ef
 ---> c2002718022c
Removing intermediate container 33ec7e07b8ef
Step 3/5 : RUN powershell start-process -filepath C:\jre-8u91-windows-x64.exe -passthru -wait -argumentlist "/s,INSTALLDIR=c:\Java\jre1.8.0_91,/L,install64.log"
 ---> Running in 6694b9e2d6cf

Handles  NPM(K)    PM(K)      WS(K)     CPU(s)     Id  SI ProcessName
-------  ------    -----      -----     ------     --  -- -----------
              3      460       1468              1424   1 jre-8u91-windows-x64


 ---> 751796f146a7
Removing intermediate container 6694b9e2d6cf
Step 4/5 : RUN del C:\jre-8u91-windows-x64.exe
 ---> Running in 8bac610ca925
 ---> 1d953ec09391
Removing intermediate container 8bac610ca925
Step 5/5 : CMD c:\Java\jre1.8.0_91\bin\java.exe -version
 ---> Running in 8f9aecd8aa6b
 ---> 865e2c4a3b5c
Removing intermediate container 8f9aecd8aa6b
Successfully built 865e2c4a3b5c
Successfully tagged java-nano:jre1.8.0_91

运行它

> docker run -it java-nano:jre1.8.0_91
C:\Program Files\Docker\Docker\Resources\bin\docker.exe: Error response from daemon: container 55868b76113bbb1231e1b59e26bf2301b7d1a80a7cb1617efed862a5d4516401 encountered an error during CreateProcess: failure in a Windows system call: The system cannot find the file sp
ecified. (0x2) extra info: {"ApplicationName":"","CommandLine":"c:\\Java\\jre1.8.0_91\\bin\\java.exe -version","User":"","WorkingDirectory":"C:\\","Environment":{},"EmulateConsole":true,"CreateStdInPipe":true,"CreateStdOutPipe":true,"CreateStdErrPipe":false,"ConsoleSize"
:[48,164]}.

基础镜像运行

>docker run microsoft/nanoserver
Microsoft Windows [Version 10.0.14393]
(c) 2016 Microsoft Corporation. All rights reserved.

Windows 服务器核心版本

Dockerfile

FROM microsoft/windowsservercore

RUN powershell -Command iwr 'http://javadl.oracle.com/webapps/download/AutoDL?BundleId=210185' -Outfile 'C:\jre-8u91-windows-x64.exe'
RUN powershell start-process -filepath C:\jre-8u91-windows-x64.exe -passthru -wait -argumentlist "/s,INSTALLDIR=c:\Java\jre1.8.0_91,/L,install64.log"
RUN del C:\jre-8u91-windows-x64.exe

CMD [ "c:\\Java\\jre1.8.0_91\\bin\\java.exe", "-version"]

构建映像

> docker build -t java-core:jre1.8.0_91 .
Sending build context to Docker daemon  2.048kB
Step 1/5 : FROM microsoft/windowsservercore
 ---> 2c42a1b4dea8
Step 2/5 : RUN powershell -Command iwr 'http://javadl.oracle.com/webapps/download/AutoDL?BundleId=210185' -Outfile 'C:\jre-8u91-windows-x64.exe'
 ---> Running in 8eef04cb451e
 ---> 9f1ad85b2b05
Removing intermediate container 8eef04cb451e
Step 3/5 : RUN powershell start-process -filepath C:\jre-8u91-windows-x64.exe -passthru -wait -argumentlist "/s,INSTALLDIR=c:\Java\jre1.8.0_91,/L,install64.log"
 ---> Running in ef30759baacf

Handles  NPM(K)    PM(K)      WS(K)     CPU(s)     Id  SI ProcessName
-------  ------    -----      -----     ------     --  -- -----------
      0       1      388         68       0.16   2060   1 jre-8u91-windows-x64


 ---> f05ce070cd55
Removing intermediate container ef30759baacf
Step 4/5 : RUN del C:\jre-8u91-windows-x64.exe
 ---> Running in 8dfc09e67472
 ---> ea9f0c6c9f8a
Removing intermediate container 8dfc09e67472
Step 5/5 : CMD c:\Java\jre1.8.0_91\bin\java.exe -version
 ---> Running in c0aa37469049
 ---> c1b7ccca9adc
Removing intermediate container c0aa37469049
Successfully built c1b7ccca9adc
Successfully tagged java-core:jre1.8.0_91

运行它

> docker run -it java-core:jre1.8.0_91
java version "1.8.0_91"
Java(TM) SE Runtime Environment (build 1.8.0_91-b15)
Java HotSpot(TM) 64-Bit Server VM (build 25.91-b15, mixed mode)

问题

如何检测,nanoserver出了什么问题?
观察C:\ProgramData\Docker\containers\<id> 什么都没有 - 没有 *.log 文件。

【问题讨论】:

  • 做一件事用powershell而不是java docker run -it java-nano:jre1.8.0_91 powershell运行nano服务器,然后去检查Java是否真的热安装正确以及文件是否真的存在。
  • @TarunLalwani 非常感谢!我进入容器,nano 映像中没有 Java,但 Java 存在于核心映像中。您能否将其添加为答案,以便我接受?

标签: java windows docker windows-server nano-server


【解决方案1】:

我将笔记本电脑的当前 JRE 安装 (C:\Program Files\Java\jre1.8.0_221) 压缩到 jre1.8.0_221.zip。然后使用dockerfile:

FROM mcr.microsoft.com/windows/nanoserver:10.0.14393.1066
COPY jre1.8.0_221.zip c:\\jre1.8.0_221.zip
RUN powershell Expand-Archive -Force c:\jre1.8.0_221.zip c:
ENV JAVA_HOME "C:\jre1.8.0_221"
ENV PATH "C:\jre1.8.0_221\bin"
CMD java -version

它对我有用。

【讨论】:

    【解决方案2】:

    这主要是安装问题。第 3 步

    Step 3/5 : RUN powershell start-process -filepath C:\jre-8u91-windows-x64.exe -passthru -wait -argumentlist "/s,INSTALLDIR=c:\Java\jre1.8.0_91,/L,install64.log"
    

    它在退出代码方面运行成功,但可能是安装程序遇到了一些问题。您应该运行一个 shell 并检查安装程序是否正常工作

    docker run -it java-nano:jre1.8.0_91 powershell
    

    您也可以尝试重新安装,看看安装程序是否有任何错误。可能是某些依赖项不存在

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2017-04-21
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多