Questions tagged [eclipse-hono]

Eclipse Hono™ provides remote service interfaces for connecting large numbers of IoT devices to a back end and interacting with them in a uniform way regardless of the device communication protocol.

Hono specifically supports scalable and secure ingestion of large volumes of sensor data by means of its Telemetry and Event APIs. Hono's Command & Control API allows for sending commands (request messages) to devices and receive a reply to such a command from a device in an asynchronous way.

Finally, Hono provides APIs for integration with existing device and credentials management systems.

For more information about Eclipse Hono visit the official documentation: https://www.eclipse.org/hono/

79 questions
0
votes
1 answer

How to replace default certificates on a cloud2edge instance?

I deployed a cloud2edge instance and now i want to replace the default certificates with other ones generated with the create_certs.sh script. According to the Hono documentation i can specify the configuration (including the certificates path) in…
damian
  • 3
  • 2
0
votes
1 answer

Accessing Eclipse Hono from a local network

We deployed Hono on a minikube cluster running on a virtual machine (CentOS 8). The load balancer is running and we can access and interact with Hono from within this virtual machine. However, we don't know how to access Hono from the outside, i.e.…
Stefan Pfeifer
  • 593
  • 6
  • 16
0
votes
1 answer

java.io.EOFException (32109) when running Eclipse Paho simulator with example Hono client

I am using MQTT simulator script that uses the Java Eclipse Paho library. I did the device registration, set the device-id, tenant-id manually using the git bash terminal as per the instructions in the Hono getting started guide, started the example…
nina
  • 27
  • 8
0
votes
1 answer

SunCertPathBuilderException when running HonoExampleApplication

I was following the steps in https://www.eclipse.org/hono/docs/dev-guide/java_client_consumer/ to start the example Hono client. From the hono-client-examples folder I ran this command - mvn exec:java…
nina
  • 27
  • 8
0
votes
1 answer

Build error when building hono from source code - on project hono-adapter-amqp-vertx: Cannot create docker access object

I was following the documentation here to build hono from source code - [1]: https://www.eclipse.org/hono/docs/dev-guide/building_hono/ But the build fails with this error - [ERROR] Failed to execute goal io.fabric8:docker-maven-plugin:0.33.0:build…
nina
  • 27
  • 8
0
votes
1 answer

Not able to install Eclipse Hono through Helm - error - failed to download "eclipse-iot/hono (hint: running `helm repo update may help)

I am trying to install Eclipse Hono using Helm and have the latest Helm version 3.3.0 installed in the system. I tried to follow the instructions from here - https://github.com/eclipse/packages/tree/master/charts/hono I created the hono namespace…
nina
  • 27
  • 8
0
votes
1 answer

Deleting Credentials in Hono

Based on this swagger documentation(https://www.eclipse.org/hono/docs/api/management/#/credentials/setAllCredentials), there is currently no way to delete credentials in Hono. Credentials are deleted when the device registration is removed (cascade…
0
votes
0 answers

Eclipse Hono - ConnectTimeoutException when starting the Command Line Client in the terminal for sending commands

I am following the Eclipse Hono getting started guide and using the sandbox environment. I opened git bash terminal and used this command for starting the device to receive commands: mosquitto_sub -v -h $MQTT_ADAPTER_IP -u $MY_DEVICE@$MY_TENANT -P…
nina
  • 27
  • 8
0
votes
1 answer

Do we need kubernetes instance to connect Eclipse Hono with Eclipse Ditto both running in sandbox environment?

I would like to know whether we need kubernetes cluster as required by cloud2edge package as mentioned in the link (https://www.eclipse.org/ditto/2018-05-02-connecting-ditto-hono.html) even if both hono and ditto are running in the sandbox…
nja
  • 67
  • 2
  • 13
0
votes
1 answer

Problem installing Eclipse Hono - No resource found in hono namespace

We are having some trouble installing Eclipse Hono on CentOS 8. We are following the official getting started guide and it seems to be running, but the step to verify the installation keeps failing and we can't access Hono as described in the…
Stefan Pfeifer
  • 593
  • 6
  • 16
0
votes
1 answer

Unable to register a tenant with X.509 based authentication in Hono

I am following this guide in order to authenticate devices with certificates, but when i run the following command i get 404 NOT FOUND (i am using the Hono sandbox): curl -i -H 'Content-Type: application/json' -H 'Expect:' --data-binary @tenant.json…
damian
  • 3
  • 2
0
votes
1 answer

Does Eclipse Hono crypto comply with FIPS 140-2?

What crypto library does Eclipse Hono use by default and is it FIPS 140-2 validated. If not is there a way to build it with a crypto library that is?
gh-tera
  • 31
  • 1
0
votes
1 answer

Eclipse Hono - 401 Unauthorized Error (Even when the credentials are correct)

I am using the following commands to create a tenant in Eclipse Hono $ curl -X POST -i -H 'Content-Type: application/json' -d '{"tenant-id": "testenant1"}' http://localhost:28080/tenant HTTP/1.1 201 Created location:…
0
votes
1 answer

Authorization for topics

Devices would be authenticated by the adapters before processing the incoming messages. Is there any way to authorize the Devices as well? i.e, to allow only a specific set of Devices to publish to a specific topic and prevent other devices from…
Rajkumar
  • 345
  • 6
  • 22
0
votes
1 answer

Gateways in Hono

I am in the process of evaluating HONO for IOT stack. We have scenarios where an intermediary device would send telemetry data for other devices. Communication through an Intermediary device is referred as a Gateway in Hono. I have found how to send…
Rajkumar
  • 345
  • 6
  • 22