1

我正在使用 ThingWorx Azure IOT Hub 连接器将 thingworx 连接到 azure Hub。

我正在 Linux 机器上配置 ThingWorx Azure IOT Hub 连接器。

我的远程thingworx服务器在azure IOT Connector的conf文件中的配置如下:

 transport.websockets {
    // ThingWorx platform application key
    app-key = "app-key"

    // One or more platforms can be specified here, comma separated
    platforms = "remote thingworx url here"
}

和健康检查也如下:

health-check{
port =9009
}

现在,当我从终端运行 azure-iot 文件时,终端上没有输出。

当我尝试向浏览器中的 9009 端口发送请求时,它无法正常工作。

我得到的错误日志是

Error injecting constructor, java.lang.RuntimeException: Unable to bootstrap 
required extensions; see log for details
at com.thingworx.connectionserver.PlatformExtensionBootstrapImpl.<init>
(PlatformExtensionBootstrapImpl.java:51)
at 
com.thingworx.connectionserver.PlatformExtensionBootstrapImpl.class
(PlatformExtensionBootstrapImpl.java:40)
while locating com.thingworx.connectionserver.PlatformExtensionBootstrapImpl
at com.thingworx.connectionserver.ConnectionServerModule.configure
(ConnectionServerModule.java:47)
while locating com.thingworx.connectionserver.PlatformExtensionBootstrap
for the 4th parameter of com.thingworx.connectionserver.CXThingImpl.<init>(CXThingImpl.java:77)
at com.thingworx.connectionserver.CXThingImpl.class(CXThingImpl.java:47)
while locating com.thingworx.connectionserver.CXThingImpl
at 
com.thingworx.connectionserver.ConnectionServerModule.configure
(ConnectionServerModule.java:43)
 while locating com.thingworx.connectionserver.CXThing
Caused by: java.lang.RuntimeException: Unable to bootstrap required 
extensions; see log for details
    at com.thingworx.connectionserver.PlatformExtensionBootstrapImpl.abort
  (PlatformExtensionBootstrapImpl.java:285)
     at com.thingworx.connectionserver.PlatformExtensionBootstrapImpl.queryInstalledExtensions(PlatformExtensionBootstrapImpl.java:190)
    at com.thingworx.connectionserver.PlatformExtensionBootstrapImpl.<init>(PlatformExtensionBootstrapImpl.java:60)
    at com.thingworx.connectionserver.PlatformExtensionBootstrapImpl$$FastClassByGuice$$be072900.newInstance(<generated>)
    at com.google.inject.internal.DefaultConstructionProxyFactory$FastClassProxy.newInstance(DefaultConstructionProxyFactory.java:89)
    at com.google.inject.internal.ConstructorInjector.provision(ConstructorInjector.java:111)
    at com.google.inject.internal.ConstructorInjector.construct(ConstructorInjector.java:90)
    at com.google.inject.internal.ConstructorBindingImpl$Factory.get(ConstructorBindingImpl.java:268)
    at com.google.inject.internal.ProviderToInternalFactoryAdapter$1.call(ProviderToInternalFactoryAdapter.java:46)
    at com.google.inject.internal.InjectorImpl.callInContext(InjectorImpl.java:1092)
    at com.google.inject.internal.ProviderToInternalFactoryAdapter.get(ProviderToInternalFactoryAdapter.java:40)
    at com.google.inject.internal.SingletonScope$1.get(SingletonScope.java:194)
    at com.google.inject.internal.InternalFactoryToProviderAdapter.get(InternalFactoryToProviderAdapter.java:41)
    at com.google.inject.internal.FactoryProxy.get(FactoryProxy.java:56)
    at com.google.inject.internal.ProviderToInternalFactoryAdapter$1.call(ProviderToInternalFactoryAdapter.java:46)
    at com.google.inject.internal.InjectorImpl.callInContext(InjectorImpl.java:1092)
    at com.google.inject.internal.ProviderToInternalFactoryAdapter.get(ProviderToInternalFactoryAdapter.java:40)
    at com.google.inject.internal.SingletonScope$1.get(SingletonScope.java:194)
    at com.google.inject.internal.InternalFactoryToProviderAdapter.get
  (InternalFactoryToProviderAdapter.java:41)
    at 
 com.google.inject.internal.SingleParameterInjector.inject
 (SingleParameterInjector.java:38)
4

1 回答 1

0

最后我能够解决这个问题。

Thingworx 的应用程序密钥不正确。

我更正了密钥,这个错误停止了。

于 2018-01-18T10:30:20.873 回答