Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "SensiNact/Gateway Troubleshooting"

(Creation of the page)
 
Line 1: Line 1:
= Gateway troubleshootings =
+
== Gateway troubleshootings ==
  
== My devices are not recognized by sensiNact ==
+
=== My devices are not recognized by sensiNact ===
  
 
Check that you have started sensiNact with *root* (or with *sudo*).
 
Check that you have started sensiNact with *root* (or with *sudo*).
  
== Under Linux - My bundles of sensiNact freezed at starting time ==
+
=== Under Linux - My bundles of sensiNact freezed at starting time ===
  
 
It can be because of the system entropy, which is used by <code>SecuredRandom</code> cf. [http://bugs.java.com/view_bug.do?bug_id=6521844 JDK-6521844: SecureRandom hangs on Linux Systems].
 
It can be because of the system entropy, which is used by <code>SecuredRandom</code> cf. [http://bugs.java.com/view_bug.do?bug_id=6521844 JDK-6521844: SecureRandom hangs on Linux Systems].

Revision as of 12:14, 13 December 2017

Gateway troubleshootings

My devices are not recognized by sensiNact

Check that you have started sensiNact with *root* (or with *sudo*).

Under Linux - My bundles of sensiNact freezed at starting time

It can be because of the system entropy, which is used by SecuredRandom cf. JDK-6521844: SecureRandom hangs on Linux Systems.

To fix this bug you will have to add the following directive to your launching command line :

-Djava.security.egd=file:/dev/./urandom

and to make sure that the java.security file contains this setting:

securerandom.source=file:/dev/urandom

Back to the top