4

尝试启动 presto 服务器时出现以下错误,如何诊断哪些属性格式错误或其他?谢谢。

配置文件:

coordinator=true
datasources=jmx
http-server.http.port=8080
presto-metastore.db.type=h2
presto-metastore.db.filename=var/db/MetaStore
task.max-memory=1GB
discovery-server.enabled=true
discovery.uri=http://localhost:8080

例外是

2013-11-11T11:11:39.582-0800 ERROR main com.facebook.presto.server.PrestoServer Guice 创建错误:

1)错误:带有属性前缀''的约束冲突:io.airlift.node.NodeModule.configure(NodeModule.java:34)的环境格式错误(对于io.airlift.node.NodeConfig类)

1 错误 com.google.inject.CreationException:Guice 创建错误:

1)错误:带有属性前缀''的约束冲突:io.airlift.node.NodeModule.configure(NodeModule.java:34)的环境格式错误(对于io.airlift.node.NodeConfig类)

com.google.inject.internal.Errors.throwCreationExceptionIfErrorsExist(Errors.java:435) ~[guice-3.0.jar:na] 在 com.google.inject.internal.InternalInjectorCreator.initializeStatically(InternalInjectorCreator.java:154) 出现 1 个错误~[guice-3.0.jar:na] at com.google.inject.internal.InternalInjectorCreator.build(InternalInjectorCreator.java:106) ~[guice-3.0.jar:na] at com.google.inject.Guice.createInjector( Guice.java:95) ~[guice-3.0.jar:na] 在 io.airlift.bootstrap.Bootstrap.initialize(Bootstrap.java:277) ~[bootstrap-0.84.jar:0.84] 在 com.facebook.presto。 server.PrestoServer.run(PrestoServer.java:137) ~[presto-server-0.52.jar:0.52] at com.facebook.presto.server.PrestoServer.main(PrestoServer.java:50) ~[presto-server-0.52 .jar:0.52]

4

2 回答 2

3

为非常不友好和无益的错误信息道歉。这是我们要解决的问题的清单。

错误“环境格式错误”表示node.environment属性(在node.properties文件中)已设置但无法匹配以下正则表达式:[a-z0-9][_a-z0-9]*. 换句话说,它必须是小写的,以字母数字字符开头,并且在后续字符中只能包含字母数字或下划线。

尝试使用更简单的名称,例如testor production

于 2013-11-12T05:12:19.927 回答
0

并不是说它是一种安慰,但我在 Centos 上得到了类似的东西:

1) 错误:带有属性前缀''的约束冲突:io.airlift.node.NodeModule.configure(NodeModule.java:34) 的环境可能不为空(对于 io.airlift.node.NodeConfig 类)

1 错误 com.google.inject.CreationException:Guice 创建错误:

于 2013-11-12T01:14:09.660 回答