Skip to content
View in the app

A better way to browse. Learn more.

Unraid

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

[Support] Linuxserver.io - HAbridge

Featured Replies

linuxserver_medium.thumb.png.23c81c1651041f86d59f8b6973fc4d93.png

Application Name: HAbridge

Application Site: https://github.com/bwssytems/ha-bridge

Docker Hub: https://hub.docker.com/r/linuxserver/habridge/

Github: https://github.com/linuxserver/docker-habridge

 

Please post any questions/issues relating to this docker you have in this thread.

 

If you are not using Unraid (and you should be!) then please do not post here, instead head to linuxserver.io to see how to get support.

  • 3 months later...

bwssytems is recommending to run the webui on port 80 due to some recent changes to Amazon echo devices.  I run the following command:

 

root@localhost:# /usr/local/emhttp/plugins/dynamix.docker.manager/scripts/docker run -d --name='habridge' --net='br0' --ip='192.168.1.7' -e TZ="America/Chicago" -e HOST_OS="Unraid" -e 'TCP_PORT_8080'='80' -e 'TCP_PORT_50000'='50000' -e 'SEC_KEY'='Gh#12uis' -e 'PUID'='99' -e 'PGID'='100' -v '/mnt/user/appdata/habridge':'/config':'rw' 'linuxserver/habridge' 
1cd31ce78e11edbac7164b5fc9d41154c71deb2842bf26682966600958e2e3e5

 

But the webui is still running on port 8080.  Any ideas on how to fix?  Thanks.

 

image.png.e1c6b3e2f6ac9da73bac66461c81b634.png

On 9/16/2019 at 4:28 PM, niwmik said:

bwssytems is recommending to run the webui on port 80 due to some recent changes to Amazon echo devices.  I run the following command:

 

root@localhost:# /usr/local/emhttp/plugins/dynamix.docker.manager/scripts/docker run -d --name='habridge' --net='br0' --ip='192.168.1.7' -e TZ="America/Chicago" -e HOST_OS="Unraid" -e 'TCP_PORT_8080'='80' -e 'TCP_PORT_50000'='50000' -e 'SEC_KEY'='Gh#12uis' -e 'PUID'='99' -e 'PGID'='100' -v '/mnt/user/appdata/habridge':'/config':'rw' 'linuxserver/habridge' 
1cd31ce78e11edbac7164b5fc9d41154c71deb2842bf26682966600958e2e3e5

 

But the webui is still running on port 8080.  Any ideas on how to fix?  Thanks.

 

image.png.e1c6b3e2f6ac9da73bac66461c81b634.png

You need to change the port in the webui also.

 

 

 

17 hours ago, saarg said:

You need to change the port in the webui also.

 

 

 

Thanks, that did the trick.

  • 1 month later...

Hello there, I need ssh inside the console. But I can't install the openssh-server. Is there a possibility to install it? I want to ssh into a raspberry pi which works as an ambilight.

 

Thanks in advance!

17 minutes ago, pappaq said:

Hello there, I need ssh inside the console. But I can't install the openssh-server. Is there a possibility to install it? I want to ssh into a raspberry pi which works as an ambilight.

 

Thanks in advance!

docker exec -it habridge apk add openssh-client

will install it, it won't survive a container update.

 

You could look at this to install it at container startup time

https://blog.linuxserver.io/2019/09/14/customizing-our-containers/

Hello, still trying to make things work. 

I'm simply trying to call a script in the folder /configs/scripts/

image.thumb.png.a4c88b88d2daaf45ccddc0e0008544cb.png

But I get the following error:

image.thumb.png.fd68cd4af31b3bc340518091284d38f0.png

 

The script contains the following content and does work when I execute it from the container's console:

image.png.0c7ce7e7920c990a3483a5d357363596.png

 

Thanks in advance!

 

Has no one an idea? This kind of script ran without a problem on the aptalca/docker...

9 hours ago, pappaq said:

Has no one an idea? This kind of script ran without a problem on the aptalca/docker...

Post your script and people might see what the issue is. You have of course made the script executable?

On 11/11/2019 at 9:31 PM, saarg said:

Post your script and people might see what the issue is. You have of course made the script executable?

I posted the script as a picture in the initial post...and yes, it is executable.

2 hours ago, pappaq said:

I posted the script as a picture in the initial post...and yes, it is executable.

You mean the picture of the ssh command?

That is not a valid script. You haven't used the shebang. The script should start with #!/bin/bash

On 11/14/2019 at 10:35 PM, saarg said:

You mean the picture of the ssh command?

That is not a valid script. You haven't used the shebang. The script should start with #!/bin/bash

Ok, that was one dumb failure of me...in my other scripts I have #!/bin/bash at the beginning...

 

Now some more content to explain my last problem to get this working again:

 

I've got the following scripts to enable and disable my ambilight based on hyperion on my TV:

on.sh

#!/bin/bash
ssh [email protected] "sudo systemctl start hyperion"

which enables the ambilight.

 

off.sh

#!/bin/bash
ssh [email protected] "sudo systemctl stop hyperion"

which disables the ambilight.

 

These work from the commandline of the habridge docker. I've copied the SSL keys to the ambilight raspi and all works well. But with the below config the scripts are not executed properly. Does someone have a clue what I'm missing here?

image.thumb.png.73f784881ed819df02ae98d499321cf3.png

 

Thanks in advance!

12 hours ago, pappaq said:

Ok, that was one dumb failure of me...in my other scripts I have #!/bin/bash at the beginning...

 

Now some more content to explain my last problem to get this working again:

 

I've got the following scripts to enable and disable my ambilight based on hyperion on my TV:

on.sh


#!/bin/bash
ssh [email protected] "sudo systemctl start hyperion"

which enables the ambilight.

 

off.sh


#!/bin/bash
ssh [email protected] "sudo systemctl stop hyperion"

which disables the ambilight.

 

These work from the commandline of the habridge docker. I've copied the SSL keys to the ambilight raspi and all works well. But with the below config the scripts are not executed properly. Does someone have a clue what I'm missing here?

image.thumb.png.73f784881ed819df02ae98d499321cf3.png

 

Thanks in advance!

My guess is that you add it as root when you do a docker exec -it habridge bash?

You need to add the keys for the abc user. The home folder for abc is /config.

2 hours ago, saarg said:

My guess is that you add it as root when you do a docker exec -it habridge bash?

You need to add the keys for the abc user. The home folder for abc is /config.

Ah that sound logical. In the deprecated habridge docker that was not the case. I've changed it and will try it out this evening. Thank you!

Thanks so much saarg. Pretty standard rookie mistakes but I'm learning so much from guys like you. Thanks for the support!

 

It runs as expected!

  • 1 month later...

Hi all,

I seem to be having a similar issue - im trying to run a simple script to wake a VM via lan. This docker has ether-wake and running the command (and the scrpt) from the docker terminal wakes it up as intended. Running the script via habride on command does not work though - I am getting a green message of success when testing it, however the script doesnt seem to run. To see if it runs at all, I added a touch command to check the scrips dir after testing:

 

#!/bin/bash

ether-wake 52:54:00:af:3a:8f
touch test

 

I know it's probably a stupid mistake on my end, can anybody let me know what it is :) Script runs fine from the docker terminal, wake the machine and creates file test. Via habridge, it does neither.

Screenshot 2020-01-11 at 18.43.06.png

35 minutes ago, Blacksus said:

Hi all,

I seem to be having a similar issue - im trying to run a simple script to wake a VM via lan. This docker has ether-wake and running the command (and the scrpt) from the docker terminal wakes it up as intended. Running the script via habride on command does not work though - I am getting a green message of success when testing it, however the script doesnt seem to run. To see if it runs at all, I added a touch command to check the scrips dir after testing:

 


#!/bin/bash

ether-wake 52:54:00:af:3a:8f
touch test

 

I know it's probably a stupid mistake on my end, can anybody let me know what it is :) Script runs fine from the docker terminal, wake the machine and creates file test. Via habridge, it does neither.

Screenshot 2020-01-11 at 18.43.06.png

What is the permissions on the script and where is it located?

To make sure it's not a permission issue, I've set it to 777. It is located in /config/scripts, which should also be correct - if I remove it from there and run "on" as a test in habridge, I get a red error message instead of the green success one, with the log telling me that the file doesnt exist.

 

 

Edit: Meh. I just ended up using Domotcz, creating a button in there that does what I need and call that via habridge instead of straight through habridge. Works for me.

Edited by Blacksus

  • 2 months later...

Hey guys.  I've been using habridge for a while and it has been dependable.  It no longer works and I'm trying  to figure out why.  When I connect habridge to my fibaro controller, all devices and scenes are imported.  I just control devices through habridge using the test option.  When I log into the alexa portal and perform a discover, nothing is found.  I've rebuilt habridge from scratch.  I've logged out and back into the alexa portal.  I've looked through the logs but from what I can tell, nothing seems out of sorts.  Any help or direction would be appreciated.  If I need to provide any info, please let me know what is required.

14 hours ago, Aquamac said:

Hey guys.  I've been using habridge for a while and it has been dependable.  It no longer works and I'm trying  to figure out why.  When I connect habridge to my fibaro controller, all devices and scenes are imported.  I just control devices through habridge using the test option.  When I log into the alexa portal and perform a discover, nothing is found.  I've rebuilt habridge from scratch.  I've logged out and back into the alexa portal.  I've looked through the logs but from what I can tell, nothing seems out of sorts.  Any help or direction would be appreciated.  If I need to provide any info, please let me know what is required.

I'm afraid I can't help much with your issue. I haven't tried habridge after I made the container and I don't have Alexa. I do have a woman by another name, but she is incompatible with habridge unfortunately...

I do know that it can be a little bit tricky to connect the Amazon device, so have you checked the habridge github page for troubleshooting info?

  • 3 months later...

Changed my unraid server from port 80 to something else.  Installed the docker from App plugin.  Set to port 80.  When I try to go to WebUI it doesn't respond from the the IP address of my unraid server.  I'm new to this so sorry if I just did something stupid.  I pasted the log below.  Thanks, Eric.

 

 


[s6-init] making user provided files available at /var/run/s6/etc...exited 0.
[s6-init] ensuring user provided files have correct perms...exited 0.
[fix-attrs.d] applying ownership & permissions fixes...
[fix-attrs.d] done.
[cont-init.d] executing container initialization scripts...
[cont-init.d] 01-envfile: executing...
[cont-init.d] 01-envfile: exited 0.
[cont-init.d] 10-adduser: executing...

-------------------------------------
_ ()
| | ___ _ __
| | / __| | | / \
| | \__ \ | | | () |
|_| |___/ |_| \__/


Brought to you by linuxserver.io
-------------------------------------

To support LSIO projects visit:
https://www.linuxserver.io/donate/
-------------------------------------
GID/UID
-------------------------------------

User uid: 99
User gid: 100
-------------------------------------

[cont-init.d] 10-adduser: exited 0.
[cont-init.d] 30-config: executing...
[cont-init.d] 30-config: exited 0.
[cont-init.d] 99-custom-files: executing...
[custom-init] no custom files found exiting...
[cont-init.d] 99-custom-files: exited 0.
[cont-init.d] done.
[services.d] starting services
[services.d] done.
2020-06-27 19:04:58,962 [main] INFO com.bwssystems.HABridge.HABridge - HA Bridge startup sequence...
2020-06-27 19:04:59,093 [main] INFO com.bwssystems.HABridge.HABridge - HA Bridge (v5.3.0) initializing....
2020-06-27 19:04:59,095 [main] INFO com.bwssystems.HABridge.BridgeSettings - reading from config file: /config/ha-bridge.config
2020-06-27 19:04:59,330 [main] INFO spark.staticfiles.StaticFilesConfiguration - StaticResourceHandler configured with folder = /public
2020-06-27 19:04:59,343 [main] INFO com.bwssystems.HABridge.SystemControl - System control service started....
2020-06-27 19:04:59.371:INFO::Thread-0: Logging initialized @826ms to org.eclipse.jetty.util.log.StdErrLog
2020-06-27 19:04:59,379 [main] INFO com.bwssystems.HABridge.util.UDPDatagramSender - Initializing UDP response Socket...
2020-06-27 19:04:59,383 [main] INFO com.bwssystems.HABridge.util.UDPDatagramSender - UDP response Socket initialized to: 50000
2020-06-27 19:04:59,392 [main] INFO com.bwssystems.HABridge.plugins.http.HTTPHome - HTTP Home created.
2020-06-27 19:04:59,397 [main] INFO com.bwssystems.HABridge.plugins.harmony.HarmonyHome - Harmony Home created. No Harmony devices configured.
2020-06-27 19:04:59,400 [main] INFO com.bwssystems.HABridge.plugins.NestBridge.NestHome - Nest Home created. No Nest configured.
2020-06-27 19:04:59,402 [main] INFO com.bwssystems.HABridge.plugins.hue.HueHome - Hue passthru Home created. No Hue passtrhu systems configured.
2020-06-27 19:04:59,403 [main] INFO com.bwssystems.HABridge.plugins.hal.HalHome - HAL Home created. No HAL devices configured.
2020-06-27 19:04:59,404 [main] INFO com.bwssystems.HABridge.plugins.mqtt.MQTTHome - MQTT Home created. No MQTT Clients configured.
2020-06-27 19:04:59,405 [main] INFO com.bwssystems.HABridge.plugins.hass.HassHome - HomeAssistant Home created. No HomeAssistants configured.
2020-06-27 19:04:59,406 [main] INFO com.bwssystems.HABridge.plugins.homewizard.HomeWizardHome - HomeWizard Home created. No HomeWizard gateways configured.
2020-06-27 19:04:59,407 [main] INFO com.bwssystems.HABridge.plugins.exec.CommandHome - Command Home for system program execution created.
2020-06-27 19:04:59,408 [main] INFO com.bwssystems.HABridge.plugins.tcp.TCPHome - TCP Home created.
2020-06-27 19:04:59,410 [main] INFO com.bwssystems.HABridge.plugins.udp.UDPHome - UDP Home created.
2020-06-27 19:04:59,410 [main] INFO com.bwssystems.HABridge.plugins.vera.VeraHome - Vera Home created. No Veras configured.
2020-06-27 19:04:59,411 [main] INFO com.bwssystems.HABridge.plugins.fibaro.FibaroHome - Fibaro Home created. No Fibaros configured.
2020-06-27 19:04:59,413 [main] INFO com.bwssystems.HABridge.plugins.domoticz.DomoticzHome - Domoticz Home created. No Domoticz devices configured.
2020-06-27 19:04:59,414 [main] INFO com.bwssystems.HABridge.plugins.somfy.SomfyHome - Somfy Home created. No Somfys configured.
2020-06-27 19:04:59,416 [main] INFO com.bwssystems.HABridge.plugins.lifx.LifxHome - LifxDevice Home created. No LifxDevices configured.
2020-06-27 19:04:59,419 [main] INFO com.bwssystems.HABridge.plugins.openhab.OpenHABHome - OpenHAB Home created. No OpenHABs configured.
2020-06-27 19:04:59,421 [main] INFO com.bwssystems.HABridge.plugins.fhem.FHEMHome - FHEM Home created. No FHEMs configured.
2020-06-27 19:04:59,424 [main] INFO com.bwssystems.HABridge.plugins.broadlink.BroadlinkHome - Broadlink Home created. No Broadlinks configured.
2020-06-27 19:04:59,426 [main] INFO com.bwssystems.HABridge.plugins.moziot.MozIotHome - Mozilla IOT Home created. No Mozilla IOTs configured.
2020-06-27 19:04:59,427 [main] INFO com.bwssystems.HABridge.plugins.homegenie.HomeGenieHome - HomeGenie Home created. No HomeGenies configured.
2020-06-27 19:04:59,432 [main] WARN com.bwssystems.HABridge.dao.DeviceRepository - Error reading the file: /config/device.db - Does not exist or is not readable. continuing...
2020-06-27 19:04:59,434 [main] INFO com.bwssystems.HABridge.devicemanagmeent.DeviceResource - HABridge device management service started....
2020-06-27 19:04:59,443 [Thread-0] INFO spark.embeddedserver.jetty.EmbeddedJettyServer - == Spark has ignited ...
2020-06-27 19:04:59,444 [Thread-0] INFO spark.embeddedserver.jetty.EmbeddedJettyServer - >> Listening on 0.0.0.0:80
2020-06-27 19:04:59.449:INFO:oejs.Server:Thread-0: jetty-9.4.z-SNAPSHOT, build timestamp: 2017-11-21T13:27:37-08:00, git hash: 82b8fb23f757335bb3329d540ce37a2a2615f0a8
2020-06-27 19:04:59,463 [main] INFO com.bwssystems.HABridge.hue.HueMulator - Hue emulator service started....
2020-06-27 19:04:59.478:INFO:oejs.session:Thread-0: DefaultSessionIdManager workerName=node0
2020-06-27 19:04:59.478:INFO:oejs.session:Thread-0: No SessionScavenger set, using defaults
2020-06-27 19:04:59.483:INFO:oejs.session:Thread-0: Scavenging every 600000ms
2020-06-27 19:04:59.512:INFO:oejs.AbstractConnector:Thread-0: Started ServerConnector@ba79e77{HTTP/1.1,[http/1.1]}{0.0.0.0:80}
2020-06-27 19:04:59.513:INFO:oejs.Server:Thread-0: Started @971ms
2020-06-27 19:04:59,515 [main] INFO com.bwssystems.HABridge.upnp.UpnpSettingsResource - Description xml service started....
2020-06-27 19:04:59,522 [main] INFO com.bwssystems.HABridge.upnp.UpnpListener - UPNP Discovery Listener starting....
2020-06-27 19:04:59,523 [main] INFO com.bwssystems.HABridge.upnp.UpnpListener - Create and run mDNS service.
2020-06-27 19:04:59,547 [main] INFO com.bwssystems.HABridge.upnp.UpnpListener - UPNP Discovery Listener running and ready....

7 hours ago, eric4414 said:

Changed my unraid server from port 80 to something else.  Installed the docker from App plugin.  Set to port 80.  When I try to go to WebUI it doesn't respond from the the IP address of my unraid server.  I'm new to this so sorry if I just did something stupid.  I pasted the log below.  Thanks, Eric.

 

 


[s6-init] making user provided files available at /var/run/s6/etc...exited 0.
[s6-init] ensuring user provided files have correct perms...exited 0.
[fix-attrs.d] applying ownership & permissions fixes...
[fix-attrs.d] done.
[cont-init.d] executing container initialization scripts...
[cont-init.d] 01-envfile: executing...
[cont-init.d] 01-envfile: exited 0.
[cont-init.d] 10-adduser: executing...

-------------------------------------
_ ()
| | ___ _ __
| | / __| | | / \
| | \__ \ | | | () |
|_| |___/ |_| \__/


Brought to you by linuxserver.io
-------------------------------------

To support LSIO projects visit:
https://www.linuxserver.io/donate/
-------------------------------------
GID/UID
-------------------------------------

User uid: 99
User gid: 100
-------------------------------------

[cont-init.d] 10-adduser: exited 0.
[cont-init.d] 30-config: executing...
[cont-init.d] 30-config: exited 0.
[cont-init.d] 99-custom-files: executing...
[custom-init] no custom files found exiting...
[cont-init.d] 99-custom-files: exited 0.
[cont-init.d] done.
[services.d] starting services
[services.d] done.
2020-06-27 19:04:58,962 [main] INFO com.bwssystems.HABridge.HABridge - HA Bridge startup sequence...
2020-06-27 19:04:59,093 [main] INFO com.bwssystems.HABridge.HABridge - HA Bridge (v5.3.0) initializing....
2020-06-27 19:04:59,095 [main] INFO com.bwssystems.HABridge.BridgeSettings - reading from config file: /config/ha-bridge.config
2020-06-27 19:04:59,330 [main] INFO spark.staticfiles.StaticFilesConfiguration - StaticResourceHandler configured with folder = /public
2020-06-27 19:04:59,343 [main] INFO com.bwssystems.HABridge.SystemControl - System control service started....
2020-06-27 19:04:59.371:INFO::Thread-0: Logging initialized @826ms to org.eclipse.jetty.util.log.StdErrLog
2020-06-27 19:04:59,379 [main] INFO com.bwssystems.HABridge.util.UDPDatagramSender - Initializing UDP response Socket...
2020-06-27 19:04:59,383 [main] INFO com.bwssystems.HABridge.util.UDPDatagramSender - UDP response Socket initialized to: 50000
2020-06-27 19:04:59,392 [main] INFO com.bwssystems.HABridge.plugins.http.HTTPHome - HTTP Home created.
2020-06-27 19:04:59,397 [main] INFO com.bwssystems.HABridge.plugins.harmony.HarmonyHome - Harmony Home created. No Harmony devices configured.
2020-06-27 19:04:59,400 [main] INFO com.bwssystems.HABridge.plugins.NestBridge.NestHome - Nest Home created. No Nest configured.
2020-06-27 19:04:59,402 [main] INFO com.bwssystems.HABridge.plugins.hue.HueHome - Hue passthru Home created. No Hue passtrhu systems configured.
2020-06-27 19:04:59,403 [main] INFO com.bwssystems.HABridge.plugins.hal.HalHome - HAL Home created. No HAL devices configured.
2020-06-27 19:04:59,404 [main] INFO com.bwssystems.HABridge.plugins.mqtt.MQTTHome - MQTT Home created. No MQTT Clients configured.
2020-06-27 19:04:59,405 [main] INFO com.bwssystems.HABridge.plugins.hass.HassHome - HomeAssistant Home created. No HomeAssistants configured.
2020-06-27 19:04:59,406 [main] INFO com.bwssystems.HABridge.plugins.homewizard.HomeWizardHome - HomeWizard Home created. No HomeWizard gateways configured.
2020-06-27 19:04:59,407 [main] INFO com.bwssystems.HABridge.plugins.exec.CommandHome - Command Home for system program execution created.
2020-06-27 19:04:59,408 [main] INFO com.bwssystems.HABridge.plugins.tcp.TCPHome - TCP Home created.
2020-06-27 19:04:59,410 [main] INFO com.bwssystems.HABridge.plugins.udp.UDPHome - UDP Home created.
2020-06-27 19:04:59,410 [main] INFO com.bwssystems.HABridge.plugins.vera.VeraHome - Vera Home created. No Veras configured.
2020-06-27 19:04:59,411 [main] INFO com.bwssystems.HABridge.plugins.fibaro.FibaroHome - Fibaro Home created. No Fibaros configured.
2020-06-27 19:04:59,413 [main] INFO com.bwssystems.HABridge.plugins.domoticz.DomoticzHome - Domoticz Home created. No Domoticz devices configured.
2020-06-27 19:04:59,414 [main] INFO com.bwssystems.HABridge.plugins.somfy.SomfyHome - Somfy Home created. No Somfys configured.
2020-06-27 19:04:59,416 [main] INFO com.bwssystems.HABridge.plugins.lifx.LifxHome - LifxDevice Home created. No LifxDevices configured.
2020-06-27 19:04:59,419 [main] INFO com.bwssystems.HABridge.plugins.openhab.OpenHABHome - OpenHAB Home created. No OpenHABs configured.
2020-06-27 19:04:59,421 [main] INFO com.bwssystems.HABridge.plugins.fhem.FHEMHome - FHEM Home created. No FHEMs configured.
2020-06-27 19:04:59,424 [main] INFO com.bwssystems.HABridge.plugins.broadlink.BroadlinkHome - Broadlink Home created. No Broadlinks configured.
2020-06-27 19:04:59,426 [main] INFO com.bwssystems.HABridge.plugins.moziot.MozIotHome - Mozilla IOT Home created. No Mozilla IOTs configured.
2020-06-27 19:04:59,427 [main] INFO com.bwssystems.HABridge.plugins.homegenie.HomeGenieHome - HomeGenie Home created. No HomeGenies configured.
2020-06-27 19:04:59,432 [main] WARN com.bwssystems.HABridge.dao.DeviceRepository - Error reading the file: /config/device.db - Does not exist or is not readable. continuing...
2020-06-27 19:04:59,434 [main] INFO com.bwssystems.HABridge.devicemanagmeent.DeviceResource - HABridge device management service started....
2020-06-27 19:04:59,443 [Thread-0] INFO spark.embeddedserver.jetty.EmbeddedJettyServer - == Spark has ignited ...
2020-06-27 19:04:59,444 [Thread-0] INFO spark.embeddedserver.jetty.EmbeddedJettyServer - >> Listening on 0.0.0.0:80
2020-06-27 19:04:59.449:INFO:oejs.Server:Thread-0: jetty-9.4.z-SNAPSHOT, build timestamp: 2017-11-21T13:27:37-08:00, git hash: 82b8fb23f757335bb3329d540ce37a2a2615f0a8
2020-06-27 19:04:59,463 [main] INFO com.bwssystems.HABridge.hue.HueMulator - Hue emulator service started....
2020-06-27 19:04:59.478:INFO:oejs.session:Thread-0: DefaultSessionIdManager workerName=node0
2020-06-27 19:04:59.478:INFO:oejs.session:Thread-0: No SessionScavenger set, using defaults
2020-06-27 19:04:59.483:INFO:oejs.session:Thread-0: Scavenging every 600000ms
2020-06-27 19:04:59.512:INFO:oejs.AbstractConnector:Thread-0: Started ServerConnector@ba79e77{HTTP/1.1,[http/1.1]}{0.0.0.0:80}
2020-06-27 19:04:59.513:INFO:oejs.Server:Thread-0: Started @971ms
2020-06-27 19:04:59,515 [main] INFO com.bwssystems.HABridge.upnp.UpnpSettingsResource - Description xml service started....
2020-06-27 19:04:59,522 [main] INFO com.bwssystems.HABridge.upnp.UpnpListener - UPNP Discovery Listener starting....
2020-06-27 19:04:59,523 [main] INFO com.bwssystems.HABridge.upnp.UpnpListener - Create and run mDNS service.
2020-06-27 19:04:59,547 [main] INFO com.bwssystems.HABridge.upnp.UpnpListener - UPNP Discovery Listener running and ready....

Post your docker run command.

Is this what you're looking for ?

 

root@localhost:# /usr/local/emhttp/plugins/dynamix.docker.manager/scripts/docker run -d --name='habridge' --net='bridge' -e TZ="America/Los_Angeles" -e HOST_OS="Unraid" -e 'SEC_KEY'='' -e 'PUID'='99' -e 'PGID'='100' -p '80:8080/tcp' -p '50000:50000/tcp' -v '/mnt/user/appdata/habridge':'/config':'rw' 'linuxserver/habridge' 

1af41b4bd08965241f4d1a16b23362a1f54de03acae7776785ad59f4afc37423

8 hours ago, eric4414 said:

Is this what you're looking for ?

 

root@localhost:# /usr/local/emhttp/plugins/dynamix.docker.manager/scripts/docker run -d --name='habridge' --net='bridge' -e TZ="America/Los_Angeles" -e HOST_OS="Unraid" -e 'SEC_KEY'='' -e 'PUID'='99' -e 'PGID'='100' -p '80:8080/tcp' -p '50000:50000/tcp' -v '/mnt/user/appdata/habridge':'/config':'rw' 'linuxserver/habridge' 

1af41b4bd08965241f4d1a16b23362a1f54de03acae7776785ad59f4afc37423

You have changed the port in HABridge from 8080 to 80 and then in the template only changed the host port. You need to change both host and container port if you change the port in HABridge. The port mapping is mapping port 80 on the host to 8080 inside the container, so it will never work.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.