0

我正在尝试在我的 Windows 8 上安装 eclipse che。我已准备好所有必需的环境变量。Docker 已在 VM 上启动并运行。但是当我跑步时

$: Che run

它不会启动。请检查下面的图片以供参考。

在此处输入图像描述

che.properties 配置文件

che.user.workspaces.storage=${che.home}/workspaces
che.machine.projects.internal.storage=/projects
che.conf.storage=${catalina.base}/temp/local-storage
che.ide.context=ide
project.template_location_dir=${che.home}/templates
project.template_descriptions_dir=${che.home}/templates

oauth.github.clientid=***
oauth.github.clientsecret=***
oauth.github.authuri= https://github.com/login/oauth/authorize
oauth.github.tokenuri= https://github.com/login/oauth/access_token
oauth.github.redirecturis= http://localhost:${SERVER_PORT}/ide/api/oauth/callback
auth.oauth.access_denied_error_page=/error-oauth
user.self.creation.allowed=false
notification.server.propagate_events=
schedule.core_pool_size=10

machine.docker.registry=http://192.168.99.100:5000
docker.registry.auth.url=http://192.168.99.100:5000
docker.registry.auth.username=user1
docker.registry.auth.password=pass
docker.registry.auth.email=user1@email.com

docker.connection.tcp.connection_timeout_ms=600000
docker.connection.tcp.read_timeout_ms=600000
machine.server.ext.archive=${che.home}/lib/ws-agent.zip
machine.server.terminal.archive=${che.home}/lib/terminal
machine.logs.location=${che.logs.dir}/machine/logs
machine.default_mem_size_mb=1024
machine.supported_docker_version=1.6.0,1.6.1,1.6.2,1.7.1,1.8.1
machine.ws_agent.max_start_time_ms=60000
machine.ws_agent.ping_delay_ms=2000
machine.ws_agent.ping_conn_timeout_ms=2000
machine.docker.machine_extra_hosts=NULL
machine.docker.che_api.endpoint=http://che-host:8080/ide/api

machine.docker.pull_image=true
machine.docker.local_node_host=http://192.168.99.100:5000
api.endpoint=http://localhost:${SERVER_PORT}/ide/api

org.everrest.asynchronous=false
org.everrest.asynchronous.pool.size=20
org.everrest.asynchronous.queue.size=500
org.everrest.asynchronous.job.timeout=10
org.everrest.asynchronous.cache.size=1024
org.everrest.asynchronous.service.path=/async/
4

1 回答 1

0

这可能是由于 virtualbox 配置为在您的计算机上使用 Docker Machine 的方式的性质。我们需要有关您的配置的更多详细信息。您可以在 github.com/eclipse/che 上发布关于 GitHub 问题的问题吗?

你可以测试的东西。

  1. docker-machine rm 默认
  2. 再次启动 che - 看看是否能解决问题

我不认为 che.properties 是您的配置问题。这似乎与 virtualbox 类似。请将问题发布到 /github.com/eclipse/che 以进行跟踪和讨论。

于 2016-02-21T16:07:44.033 回答