- Platform information:
- Hardware: Proxmox
- OS: openhabian on Linux openhabdeb 6.1.0-37-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.140-1 (2025-05-22) x86_64 GNU/Linux
- Java Runtime Environment:
openjdk version “21.0.8” 2025-07-15 LTS
OpenJDK Runtime Environment Temurin-21.0.8+9 (build 21.0.8+9-LTS)
OpenJDK 64-Bit Server VM Temurin-21.0.8+9 (build 21.0.8+9-LTS, mixed mode, sharing) - openHAB version: 5.0.1 (Build)
I have just migrated my square white Hue bridge to a new square black Hue Bridge Pro. I used the migration feature in the Hue app (replace an existing Bridge). Hoping I could retain my openhab setup. All the lights and setup have been transferred to the new Hue Bridge Pro.
I changed the ip-address in the Hue API v2 Bridge, I also created a new Application key, using the api debug tool of the bridge directly ( needed to press the button
).
Using the ip-address and application-key, from the command line of my openhab system this works just fine,
curl command and response
openhabian@openhabdeb:~$ curl -s --insecure --location http://192.168.3.87/api/$SECRET/lights| jq | head -30
{
"1": {
"state": {
"on": false,
"bri": 1,
"hue": 33090,
"sat": 61,
"effect": "none",
"xy": [
0.3669,
0.3706
],
"ct": 230,
"alert": "none",
"colormode": "ct",
"mode": "homeautomation",
"reachable": true
},
"swupdate": {
"state": "noupdates",
"lastinstall": "2025-09-11T10:05:49"
},
"type": "Extended color light",
"name": "Keuken Plafond",
"modelid": "LCT001",
"manufacturername": "Signify Netherlands B.V.",
"productname": "Hue color lamp",
"capabilities": {
"certified": true,
"control": {
If I use the same ip-address and applicationkey in openhab I get the following error:
COMMUNICATION_ERROR
An unexpected exception occurred: java.util.concurrent.ExecutionException: javax.net.ssl.SSLHandshakeException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target -> javax.net.ssl.SSLHandshakeException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
This is the definition of the Bridge:
UID: hue:bridge-api2:5c29b86073
label: Hue API v2 Bridge
thingTypeUID: hue:bridge-api2
configuration:
applicationKey: <removed>
ipAddress: 192.168.3.87
checkMinutes: 60
useSelfSignedCertificate: true
Forgot to mention: same issue in Openhab4, upgrade to OH5 did not change anything
Has anyone connected the new Hue Bridge Pro to openhab yet?