#add-ons-archived

1 messages ยท Page 49 of 1

lone dagger
#

the SSL certificate doesn't seem to be set up correctly as I get this

cunning wolf
#

What's 'this'?

lone dagger
#

ergh

#

tryiung to paste a screenshot

#

...and failing

#

basically, 'Secure connection failed'

cunning wolf
#

If you must use images instead of text:

dense spadeBOT
#

Please use imgur or other image sharing web sites, and share the link here.

cunning wolf
#

But yes, it sounds like your certificate either doesn't exist or isn't valid for the domain you're accessing.

lone dagger
#

indeed

#

the duckdns log seems to suggest that it's been created successfully...

#

``+ Checking domain name(s) of existing cert... unchanged.

  • Checking expire date of existing cert...
  • Valid till Feb 24 11:09:22 2021 GMT Certificate will not expire
    (Longer than 30 days). Skipping renew!``
sly kindle
#

The addon only gets the certificate and places the files in /ssl directory. It does not configure HA to use it.

#

You have to do that

lone dagger
#

ah ha

sly kindle
#

In configuration.yaml

#

The addon docs contain the configuration which must be added

cunning wolf
#

An alternative would be to use a reverse proxy to handle all the cert stuff so that you can still access your HA host on your internal network via HTTP (instead of HTTPS with cert warnings).

#

Nginx Proxy Manager is good. Comes with a handy UI for people that may not be familiar with writing an nginx.conf file.

lone dagger
#

awesome

#

that fixed it

#

Big thanks, @sly kindle & @cunning wolf

#

Do you know if I need to leave port 80 open for the certificate to be renewed?

cunning wolf
#

cogneato did all the work ๐Ÿ˜„

lone dagger
#

yeah, but you both had to deal with me not RTFM lol

cunning wolf
#

It's cool. We've had far worse ๐Ÿ˜‰

lone dagger
#

haha

sly kindle
#

@lone dagger port 80 isn't needed as the addon uses dns auth

lone dagger
#

excellent

#

thanks

#

incidentally, I totally read the documentation and performed that step but at the wrong point in the process which resulted in it being farted back out by the config validation so I commented it out. Then foolishly forgot all about it

#

oh well

#

success now

#

boom

sly kindle
#

ah...yeah if you have the config, but not the cert, you get errors

lone dagger
#

yeah

#

now to have a fight with SmartThings...

cunning wolf
#

Zigbee sensors? Consider moving to a Zigbee method that doesn't need a proprietary hub. See #zigbee-archived for more info.

lone dagger
#

I have a raspbee installed and that's dealing with a bunch of xiaomi sensors

#

but it doesn't seem to pick up an old smartthings smart plug

#

yeah

#

sucks

atomic stone
#

what can I read or watch to learn about how to do this?

gleaming timber
#

hi ppl, could someone push me in the right direction for mqtt issues? I could not integrate the build in mqtt service....

atomic stone
#

@raven tinsel I'm interested to do the work for the synapse upgrade also ^

raven tinsel
#

k

#

no need to

#

as that has already been done

#

7 days ago

atomic stone
#

wow it's just the version bump

#

that's great

#

when do addons (or specifically this one) build and release?

raven tinsel
#

when I have time to test them

atomic stone
#

is there anything I can do to help with that? there are open CVEs against the current version

#

one of my goals is to get more involved in the add on community so I have two motivations here

raven tinsel
#

There is nothing you can do

stuck wagon
#

Is it possible to add custom labels in history view for events? I'm looking for addon for that.

wanton maple
#

Hello there, I'm currently having some issues with DuckDNS/NGINX add-ons for my HA running on a Raspberry Pi. My modem got reset because my ISP messed around with it, and after the reset, I get ERR_SSL_PROTOCOL_ERROR when I try to access HA using my DuckDNS domain.
Any ideas what can be wrong? (didn't know which category would be appropriate for this question, so I took a chance)

#

Obviously happy to share more details if anyone is interested, but didn't want to post a wall of text here ๐Ÿ˜„

cunning wolf
#

If you don't post all the details, a lot of people won't be bothered to help. They don't want necessarily want to engage in a discussion if it turns out they can't help you.

weary stratus
#

Visual

wanton maple
cunning wolf
#

You found the answer already. You also don't have to scroll back far through the chat history to see someone else solve the same problem.

#

You need to tell HA which certs to use:

ssl_certificate: /ssl/fullchain.pem
ssl_key: /ssl/privkey.pem```
wanton maple
#

I tried that, but as I've seen on multiple sites, this isn't needed when using NGINX

#

And if I add those lines, it won't allow me to use the HA app while connected to my local network

cunning wolf
#

Then your nginx isn't configured correctly. If your reverse proxy is handling the certificates, you wouldn't be having problems in the first place.

wanton maple
#

Yeah, that's what I'm kinda trying to figure out..

cunning wolf
#

Also, you don't need both the nginx add-on and the DuckDNS add-on.

#

You haven't actually shared what your nginx.conf looks like. That's probably the key thing here.

#

And you shouldn't be forwarding your router to HA, you should be forwarding your router to nginx.

wanton maple
#

Everywhere I've read they say to forward the https (443) port to 8123 when setting this up

cunning wolf
#

Everywhere... except for nginx documentation ๐Ÿคทโ€โ™‚๏ธ

#

Your nginx is listening on 443, right?

wanton maple
#

And for the config for NGINX add-on, I shared what I have setup there

#

But why did this setup work without any hickups earlier then?

cunning wolf
#

This?

customize:
  active: false
  default: nginx_proxy_default*.conf
  servers: nginx_proxy/*.conf```
You don't tell us what's *inside* those files. We're not psychic.
#

Answer my questions...

#

What port is nginx listening on?

wanton maple
#

If by listening on, you mean the port thingy you can configured under "Configuration" in the added, 443 is listed and 80 is disabled

#

Aren't those files only active if active: true? And where are those files located?

cunning wolf
#

I have no idea. I don't use that add-on.

#

Enable both 443 and 80. Set up forwarding rules on your router for 443->443 and 80->80. Test the connection again from a device outside of your network (use the browser on your phone using cellular data).

#

Let me know when you've tested that and what the outcome is.

wanton maple
#

Damn, setting 443->443 seems to have fixed the issue. I probably mis-remembered when I had to re-assign the port forwarding rules after the reset of my modem.
Now app works both locally and remotely (browser as well)

#

Thank you for the help on this stupid/noobish question ๐Ÿ˜„

cunning wolf
#

It's almost as though a reverse proxy should be the entry point to your network...

#

It handles all traffic and decides where to route it.

#

The good news is you got most of it right. This could've been a lot harder ๐Ÿ˜‰

wanton maple
#

Yeah. I just thought I had forwarded differently earlier and it worked. No clue what caused it to work back then

#

Very true, again thank you ๐Ÿ™‚ Spent like 6hrs trying to figure this stupid thing out, lmao

weary stratus
#

I nead help , installiert nginx and when logging in with basic login, the message Bad gateway appears

weary stratus
#

i can't seem to find an addon that can turn the speakers on, on the host pi4 i'm using

potent sundial
#

Hey guys, quick question: How can I disable netbios with the offical samba add-on?

atomic stone
#

If my dns name supports DNS-01 for letsencrypt renewal, why (or should) I use the letsencrypt add on?

rare citrus
#

Hi I'm trying to configure my first node on ESPHome and when I go to compile the YAML I get this error

"[API] ConnectionError: HTTPConnectionPool(host='api.platformio.org', port=80): Max retries exceeded with url: /v2/lib/search?query=name%3A%22ESPAsyncTCP-esphome%22 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x759c0e90>: Failed to establish a new connection: [Errno -2] Name or service not known',)) (incremented retry: max=5, total=1)"

Does this mean the API servers are down?

glossy quest
#

Regarding ADB for Fire TV: under sources, I'm able to see my apps - including the official installed apps by Amazon, and my sideloaded apps. When I change sources to the official apps it can launch, but not to the unofficial apps. Any ideas if there's an alternative way for me to launch apps with the package name?

static wasp
#

Hi there -- is it necessary to load HACS if you can just load repositories into the supervisor? Just curious of the benefit

cunning wolf
#

@static wasp For starters, HACS has nothing to do with add-ons. It's neither an add-on itself, not does it install add-ons.

ebon carbon
#

Hi everyone,

I've tried installing Grocy Addon (v.0.9.2) on Hass.io directly from the addon store but whenever I'm trying to add a product to the inventory I get a 404 error :
Slim\Exception\HttpNotFoundException /var/www/grocy/vendor/slim/slim/Slim/Middleware/RoutingMiddleware.php.

I've tried reinstalling the addon but doesn't change anything.

I've done some research and always end up on Frenck's same reply : "You're using an edge version, which is a dev version. There was a warning about it"
Having it installed from Hassio's addon store, I couldn't see any info on it being a stable or dev version.

Could you please tell me if the v.0.9.2 version is a dev or a stable version and how could I solve my problem as I haven't found another way ?

hollow wharf
#

Hello ๐Ÿ‘‹
I have a new Conbee II and just made the setup for HA, but my newly paired Trรฅdfri bulb doesn't show up as an entity on HA. I can see and control it with the deConz addon, so the pairing worked fine. I also rebooted HA but didn't help. Any idea what am I missing in here?

hearty crescent
#

Hello! I am trying to list all my devices with the tellstick add-on. I keep getting "TellStick off fails -> x - TellStick not found"
Do I need to connect the tellstick to the pi somehow? I have tried looking around for some hours but can't figure it out. Started with hassio today ๐Ÿ˜…

sly kindle
#

@hearty crescent are you following the docs for the integration?

dense spadeBOT
manic sail
#

I'm trying to acces samba through my laptop (wlan) and I cant get it through the same path I gave on my desktop (eth), it worked nice through lan

#

anyone any idea why?

#

do I need to allow in the interface: '' option?

hearty crescent
#

@sly kindle https://paste.ubuntu.com/p/dBCCBNbwzC/
I then added a device to the addons configuration and when I execture the command {"addon":"core_tellstick","input":{"function":"learn","device":"1"}}it tells me that the TellStick is not found..

sly kindle
#

@hearty crescent you might need a reboot after adding the stick. not sure. what do the addon logs say?

hearty crescent
#

[16:37:02] INFO: Read learn / 1
[16:37:03] ERROR: TellStick learn fails -> Learning device: 1 Example device - TellStick not found

sly kindle
#

@hearty crescent are both wifi and eth active? wifi may have a different ip

hearty crescent
#

Ethernet on both ends, I use a "tellstick znet lite v2"

#

Am I supposed to connect the tellstick directly to the pi somehow?

#

Or just plug them both in to the router

sly kindle
#

ah sorry the wifi/ethernet was for @manic sail

manic sail
sly kindle
#

I'm not referring to the add-on config at the moment

#

do you have ssh addon?

#

what does ha network info show?

manic sail
#

in interfaces only shows eth0, no wlan option

#

ok, I think I need to enable the wifi (which I skipped while installation), right?

dark yoke
#

supervisor has no Wi-Fi on stable version, that's only on dev/beta

manic sail
#

ok, then I will contiunue at the moment without wifi. But if I want to enable it I just would need to switch to beta/dev and follow the process for Wi-Fi installation?

atomic stone
#

i'm interested in adding postgresql as a service that is part of an existing container

#

is there a container that already has postgresql packaged into it so I can see how they did it?

autumn flume
#

hi guys how reputable is zeroteir?

cunning wolf
#

That doesn't seem to be a question about the add-on. If you just want to know about reviews for businesses, there are plenty of websites for that.

autumn flume
#

I heard they are reputable and use e2e

#

basically create a vlan between devices running zeroteir software via p2p and udp holepunching

cunning wolf
#

I understand what it is.

autumn flume
#

in general though would u say its trustable

#

I read else where it is

cunning wolf
#

I have zero idea...

#

Why ask in here in the hopes that one or two people give their views? There are review sites that aggregate thousands of reviews.

autumn flume
#

eh fair enough

empty prairie
#

Good evening, how can I see the complete logs of a supervisor add-on? I only see the latest n lines. Looking to retrieve the Bitwarden admin password from the logs.

empty prairie
#

Got it. Using ssh, curl and the supervisor API.

nimble cobalt
#

Hello, so I'm looking at Addons but I run a dedicated Home Assistant Core server. I was looking at the addon Github to see what is going on there.. the File Editor for example seems like it has zero actual code in the repo...

My rough understanding of the addons are that they are docker-container services that run separately from Home Assistant Core, but then basically get linked into HA via something that looks like a panel iframe? If so, shouldn't I be able to just run the file editor docker container and point it at my HASS instance?

#

I guess what I'm not seeing is the actual code that integrates this separate file editor thing into what ultimately would be a Hass.io/Home Assistant Core

versed notch
#

I'm trying a setup with a NodeMCU (esp8266) and a small servo (SG90)

#

I've tried following the ESPHome guide and a guide of some guy online. But I can't seem to get the servo to move

#

How would I go about to troubleshoot this?

#

The esp is connected and the log shows it being online and everything

versed notch
#

Wait, I just realized. I'm using a Nodemcuv3, I got nodemcuv2 selected in the config. That might cause some issues

dense spadeBOT
wanton maple
#

Wait, that was not a code wall Q_Q

#

Seems my Node-Red add-on disconnects/re-connects every 5 minutes. Details in the alleged "code wall" that was moved by the bot ^

marsh sandal
#

Hi
After I updated my hassio for the first time since some months I cannot start my Mqtt broker anymore which is very bad for me.
Mqtt broker starts and immeadetly terminates with the following message:
/usr/lib/bashio/dns.sh: line 236: syntax error: unexpected end of file

Please help my whole automation is based on zigbee devices.

cunning wolf
#

You need to give more information. What broker is it? Where's it hosted? What OS does it run on?

marsh sandal
#

When I start the Mqtt broker the following message appears :
/usr/lib/bashio/dns.sh: line 236: syntax error: unexpected end of file
and the broker stops

#

The broker is hosted on the localhost

#

I looked at the run.sh script from the broker but there are no calls to bashio dns functions there are only bashio log calls.

#

I am at the end of my rope here,...

weary stratus
#

Hi, i have a problem with instalation ESPHome .. i got this error: no such image: esphome/esphome-hassio-armv7:1.15.3: No such image: esphome/esphome-hassio-armv7:1.15.3

#

can you please help me ?

#

reboot homeassitan helps me

#

thank you

weary stratus
#

ozw beta issue: I didnt have any luck adding a front door lock as a secure node. I cant find the z-wave network key in either the .core.config_entries or in the options.xml (latter is even commented out:

<!-- If you are using any Security Devices, you MUST set a network Key -->
<!-- <Option name="NetworkKey" value= (....)

I have configured the ozw add-on with a network key, and unsecure nodes are working as expected. Any chance the add-on is not correctly picking up the network key from the add-on configuration? What can I do? Edit the options.xml?

cunning wolf
spring carbon
#

Why do I need an internet connection to use the file editor?

#

What nonsense this is... Just had a moment no internet and file explorer won't start. Is there data being shared online which people don't know about?

cunning wolf
#

You can see for yourself who it talks to. Look in your browser's dev tools.

#

But there's no point you getting all angry. I doubt it's sharing your data with anyone ๐Ÿ˜‰

#

Upload and download files.
Stage, stash and commit changes in Git repositories, create and switch between branches, push to remotes, view diffs.
Direct links to Home Assistant documentation and icons.
3 very reasonable reasons why it would need you to be online.

steel wyvern
#

I'm getting the "401: Unauthorized" when trying to login to my local HA account in Home Panel. Any fix for this?

cunning wolf
#

Use the right credentials ๐Ÿ™‚

steel wyvern
# cunning wolf Use the right credentials ๐Ÿ™‚

Pretty sure i'm using the right one. My username (which i can see in the bottom left corner) and the password which i've changed 2 times now to be sure. If i type in the wrong username or password i get a "Wrong username or password" message. So the 401 message only shows when i login

supple wren
#

Hi all is it possible to amend or speed up the time that home assistant calls google calendar for an update so instead of the default 15 minutes to check for updates every 5 minutes

steel wyvern
#

Anyone have any idea what i could try to fix the Home Panel issue mentioned above? Been trying all night but i really have no clue

covert arch
#

@steel wyvern what's the home panel url look like you are trying to access?

steel wyvern
covert arch
#

I don't understand what you're saying, Does it work on the pc or the tablet? which url does/not work?

quaint marten
#

Hey! Having issues getting DuckDNS + LE working. When i start LE i get an error, Type: unauthorized and Detail: Invalid response from. From what i understand i did everything according to docs.

steel wyvern
covert arch
#

sounds like a simple edit of a bookmark?

steel wyvern
# covert arch sounds like a simple edit of a bookmark?

When you start Home Panel from a device for the first time you need to login to Home Assistant and give it the Home Assistant URL. When i did that on my PC i used what was typed as default instead of changing it. So now it is saved somewhere and i need to change it to gain access on my PC
https://cdn.discordapp.com/attachments/694208044602622004/782915046853574686/Screenshot_20201130-112342.jpg
https://cdn.discordapp.com/attachments/694208044602622004/782915047131185202/Screenshot_20201130-112414.jpg
https://cdn.discordapp.com/attachments/694208044602622004/782915047608811520/Screenshot_20201130-112427.jpg

covert arch
#

use the ip, not the hostname. apparently hostname doesn't work alright in your network

steel wyvern
#

Yes thats what im trying to change, but i dont know how

#

Its saved somewhere, and i dont know where

sly kindle
#

homeassistant.local and hassio.local are two different hostnames. What is it that you see at Supervisor > System > Host in the UI?

marsh sandal
#

Hi I had to reinstall and thank god I do weekly backups,...

steel wyvern
#

@sly kindle Yeah i just mixed them together. The promt where you set the URL only shows once for every device. Doesn't matter if i reinstall Home Panel. I need to find the location where the URL is saved, and change it to http://192.168.1.x:8123/.

covert arch
#

log out of HA on this device? Clear cookies and localstorage?

steel wyvern
#

Good idea. Will try

#

@covert arch Great success! Worked like a charm. Got asked to set the URL again. Thanks for the help! ๐Ÿ™‚

feral orbit
#

Hello, I am new here, I joined because I found my first problem that I couldn't solve trough google..

#

the problem is trying to config samba share with a password and username trough !secret

#

it says invalid yaml

dark yoke
#

bla: !secret bla not valid
bla: "!secret bla" valid

feral orbit
#

๐Ÿ˜

#

ok let me try ๐Ÿ™‚

#

thank you!

#

it works

quaint marten
#

This SSL thing wasn't too easy...

spring carbon
#

Mono I understand that my data is probably not shared. Still it's annoying that im trying to build an offline smart home so that everything keeps working when something like an internet crash happens. And then all of a sudden I see that a simple addon like file editor isn't working when there is no internet. I'm connected locally and should be able to edit files when offline imho

quaint marten
#

Can't even access my HA after trying to get LE + DuckDns to work. Awesome

indigo niche
#

I am having some issues trying to get inital setup of Ada working on a Pi OS Lite supervised installation, 8gb pi4 w/https://raspiaudio.com/produit/ultra hat. I have validated that HA audio is working with spotify connect. I am unsure whether the issue is with sound or with ada tts/stt configuration.

sly kindle
#

@spring carbon use the samba addon locally instead? Then you can use whatever editor you like

#

file editor add-on is not the single way to edit or access files.

old cliff
#

holy cow I can't remember how to log into tasmota admin in HA. Anyone have any ideas? I haven't turned it on in about 9m and my HA creds do nothing... Thanks

vernal cobalt
#

hello, simple question, I installed the mqtt broker (default config) but what is the ip? Is this the same as the ip of my HA setup?

viscid orchid
#

yes

vernal cobalt
#

thanks!

spare maple
#

Hey there. Does anyone else have trouble with the openzwave addon after the last update? Today I noticed that half of my radiator thermostats are no longer connected and my roller shutter devices are also gone. The appear with the "CacheLoad" status but I have no idea how to get them back to work, especially the shutters as they should function as repeaters as well... happened all over sudden without me doing something... I noticed that more thermostats failed as my heating plan stopped working and some devices turned to "off" which is something they should never do at all with the current outside temperature... ๐Ÿค”

lapis burrow
#

having same issue

neon sonnet
#

Hi, someone know how i enter special character in the configuration.yaml as name. my use case is name 'Kรผche' of entity in emulated_hue.

covert arch
#

@neon sonnet can you share a config sample?

#

quotes should keep you safe usually

olive granite
#

Does anyone else use the folding at home add on. Folding now supports ARM chips but the add on is still showing up as unsupported. Is there a way around this?

#

I believe @raven tinsel made the add on.

raven tinsel
#

Who is he?

olive granite
#

Sorry

raven tinsel
#

๐Ÿ˜„

#

there is no ARM support... really, there is not much use in running that on such a device

#

Sure, there are some powerful chips out there

#

but large part of our user base runs on a Pi in the ARM cases... so I would not recommend on running that on such a device

olive granite
#

Ah ok.

#

Thanks anyways

manic monolith
#

hei. quick noob question. i just installed hassio supervised and looking through Supervisor > Add-on Store i see only of couple of addons under community. waaay less than what I can find listed at https://www.home-assistant.io/integrations/. is there anything else I need to do in particular so I can have all the plugins listed ?

viscid orchid
#

Addons are not integrations

dense spadeBOT
#

Some integrations are added with YAML, some in the UI. Check the documentation for your integration to see which method it uses.

manic monolith
#

makes sense ..

#

could you tell me what's the difference between addon and integration ?

viscid orchid
#

Addons are separate pieces of software that run in their own containers. Integrations are loaded into HA and allow HA to communicate with other things

#

Or, ya know, read the links

manic monolith
flint minnow
#

would somebody be able to help me figure out remote access via duckdns? i've had this working by running linuxserver/swag alongside my HA container, but i've now switched to an OS install, and can't figure out how to get remote access working ๐Ÿค”

flint minnow
#

I also installed the nginx addon, but I'm not sure that's helping either ๐Ÿค”

#

I'm trying to set my app up, but it doesn't seem to want to connect off of my wifi

spare maple
#

Hi! I'm kinda new to this but can somebody tell me how to get CachedNodes back to working again? I had several nodes suddenly no longer responding and they appear as CacheLoaded but I have no idea how to get them back being responsive. Restarted OZW several times, did try "heal network" but nothing seemed to bring the devices back. It's main powered ones as well as battery operated devices... I'm kinda lost with that...
It seems like OZW no matter what I do will put the query stage to "CacheLoad" on most of the devices... can anyone help me what to do to get them back to a state where the can be operated? I don't know what causes this and how to "wake" the devices so they get the "Complete" QueryStage status again...

neon sonnet
#

@covert arch ```
emulated_hue:
listen_port: 80
expose_by_default: false
entities:
switch.licht_kueche_switch:
name: "Licht Kรผche"
hidden: false

Alexa shows this as "Licht Kรƒยผche" and dont response. Found solution to rewrite Device name in Alexa App but dunno how do it right.
covert arch
#

i donโ€˜t have alexa ๐Ÿคทโ€โ™‚๏ธ only use emulated_hue but this seems fine. maybe thereโ€˜s a issue with emulated_hue and special chars with alexa

rich goblet
#

hello can someone help me with the terminal and ssh add on

#

core_ssh

#

trying to use this automation to execute a script

dense spadeBOT
supple wren
#

Hi there is anyone aware of an addon that lets you see what current effect is running on a RGB strip for example instead of going into wled to see what effect is running, having a card that displays what effect/colour is running

sly kindle
#

@supple wren that wouldn't be an add-on but rather a lovelace card

supple wren
#

thats what i mean sorry

sly kindle
#

are you using the wled integration?

supple wren
#

yes i am

sly kindle
#

when you choose the plain old entity card, you should be able to specify an attribute to show.

#

effect being one of those

supple wren
#

ok i will try it

sly kindle
#

But there are probably custom cards to do the same but differently... see #frontend-archived for more

weary stratus
#

Evening All, trying to install the motion eye addon, however I'm getting tls handshake error 500 ... anyone know what could be causing this ?

viscid orchid
#

@rich goblet I donโ€™t think you can do that with the official addon. It does work with the community SSH & Web Terminal addon, which is better anyway

rich goblet
#

i will give it a try

sly kindle
#

The community add-on makes omelettes

#

and crepes

#

wait...what's the plural of crepe

rich goblet
#

@viscid orchid thank you that took care of the problem

flint minnow
#

is this where I should ask if I can't get remote access with duckdns working even though the duckdns addon appears to be correctly generating certs?

#

I've got 443 -> 8123 and my certs are definitely present, along with successful messages in the duckdns log

#

but can ONLY access my instance internally, and from the ip:port

#

externally nothing works, and internally the domain doesn't work

rich goblet
#

i had that today then i notice my router public IP isn't a real IP i was behing my providers NAT

void harbor
#

In order to work around a problem with the new Openzwave addon, I need to put an extra argument on the command line that HA uses to start it up. Does anyone know if this is possible, and if so, where can I add it. Need to add a "--cpu-shares 512" in an attempt to slow it down so it doesn't overwhelm the mqtt server on startup.

dusty patrol
#

One message removed from a suspended account.

#

One message removed from a suspended account.

opal plaza
#

hi. used to use, then stopped, now here

#

What Frenck meant

shadow kestrel
#

Is it normal to have to reinstall MariaDB add on every couple of months due to database errors?

#

Ok โ€” any recommendations for a solid fix? Iโ€™m running supervised via docker containers on synology, so itโ€™s not an SD card issue or anything

elder palm
#

Is there any issue with the zigbee2mqtt addon ? We canโ€™t add it at a friend. Get error from the repo. :/

#

Or is it GitHub that have some glitches?

odd wave
#

is it possible to make the Samba share add-on share things connected via USB?
the documentation states it only shares HA's home directory filesystem stuff

sly kindle
#

there's a custom samba addon for that but it's really only for using with the custom plex add-on which goes with it

odd wave
#

i actually want it for plex..

sly kindle
#

on a pi?

odd wave
#

my plex host for transcoding is a different PC (windows) but i wondered if i could make my pi a NAS for the media storage over SMB

sly kindle
#

I'm really against that, so I'm the wrong person to ask

odd wave
#

why against?

sly kindle
#

Why tie this Home Automation hub to your Plex functionality in any way whatsoever.

odd wave
#

well

sly kindle
#

other than plex sensors, that is

odd wave
#

i have two computers i use as plex servers. my laptop, which draws lower power and is quieter than my desktop.

#

so at night, for example, i'll turn my desktop off and turn my laptop on.

#

but then if i want my plex library i have to unplug my external HDD from the desktop and plug it into the laptop.

#

if i had a low power computer with 24/7 uptime to use as a NAS, it would be nice. and i already have HA going.

#

where's the custom samba addon?

sly kindle
#

my plex server, which I've run in one form or another over +8 years is kind of precious to me. It's moved from a windows box, to an ubuntu box (better performance), to where it is now on an unraid box for the past 4 years

#

linking it to a pi would make me sad

#

and likely very frustrated

odd wave
#

yeah i only do 1-2 streams at a time and directplay 90% of the time so i don't even need power.

sly kindle
#

dianlight

#

let me find it

sly kindle
#

yep

odd wave
#

how do i get it on my box?

#

i'm guessing i'll need to format the external disks for linux and it won't read/write to ntfs?

sly kindle
#

you add custom repos from the upper right corner of the add-on store page

#

I played with it for a week, started getting errors, and went back to the core samba addon

#

yes, I think I did format the usb drive I had attached

late raven
#

I was wondering: is there a way to manually check if updates for addons are available? Can I call a service or something? Or is there a ssh command?

sly kindle
#

reload the supervisor

late raven
#

OK thanks ๐Ÿ™‚

odd wave
#

what are the upsides and downsides to using home panel vs the native viewer? i see it is themeable..is that it?

sly kindle
#

or beta.json if you're in beta channel

#

reloading it forces that check

#

@odd wave lol you're going straight for all the wonky stuff

odd wave
#

home panel is actually how i found out about home assistant. saw some dude's setup on an ipad with it.

sly kindle
#

I mean people like home panel...but you might just get a lay of the land for a few weeks first

odd wave
#

is there any other differences other than probably increased overhead and theme support?

sly kindle
#

I haven't check it in a long time...before HA had lovelace I think

#

and lovelace (the native frontend) has come a long way. I don't think there would be a lot that you couldn't reproduce, but I'm not sure

odd wave
#

lovelace has theme/color support?

#

or just color icons

sly kindle
#

you have to take control first, using the 3 dots in the upper right

#

you can scroll through a few demos there

#

but those don't really show the full customization that people do

odd wave
#

to do TV stuff i need an IR addon, right? there's no way to do HDMI-CEC over the network..stuff..?

sly kindle
#

you mean directly connect HA to your TV?

#

I would check integrations to see if there is one for whatever it is you have first

odd wave
sly kindle
#

could be the system monitor integration? I see speedtest integration being used there as well

#

the presentation options are separate from the integration choices

#

so you can pick a card which shows a graph for something, or you can pick a card which shows entity name and a value

odd wave
#

man this is so amazing

#

๐Ÿ˜‚

#

HA is like something out of a dystopian cyberpunk movie.

odd wave
boreal dove
#

Hi. How do I edit add-on configuration?

#

I have RPI

sly kindle
#

from the configuration tab at the top of each add-on's page?

boreal dove
#

hm, that's certainly my problem - I don't have any tabs

#

I see, it's not under the add-on itself but under supervisor->addon

sly kindle
#

that's...the add-on itself

#

click on an add-on, and at the top of the page is the configuration tab for that add-on

boreal dove
#

@sly kindle Thanks I found it. I just did not see it. Probably would have preferred for this to be next to stop restart, but now I know where to look.

digital niche
#

Greetings :)
I'm using HA on a RPi. I had 'http://homeassistant.local:8123' working before I enabled the 'AdGuard Home' add-on. Now it no longer works. I guess it's because my router is not doing DNS anymore. I've tried adding an entry for that into the RPi's '/etc/hosts' file, but that didn't work. Does anybody have any suggestions on how to fix it?

atomic stone
#

are there add ons that use postgresql?

coarse forge
#

anyone got any recommendations for heart rate and sleep monitor band/watches that integrate well into HA? im guessing there is a fitbit integration? .. but just wondering if there were others?

stuck phoenix
#

I have install bitwarden locally, i am not able to access bitwarden host through android bitwarden app. it shows me some certificate error. some expert can guide me to solve this problem. I am able to access bitwarden webUI through browser within LAN network.

mellow ridge
ebon dune
#

Does some one use MoutionEye addon with HassIO? How you store your video records history? I mean usually for NVR kind stuff we use 1-2TB HDD disk. But with hassio installed on raspberry or at intel nuc with ssd I don't have such disk. Is it possible attach second HDD disk to Intel NUC and store video records from MoutionEye on it?

atomic stone
#

@ebon dune I believe recent hassOS can switch the root filesystem to another disk so I think you could move everything to a larger external spinny disk

#

I was going to do this for my motioneye also but I sprung for the NVR and use motioneye to monitor it instead (no recording)

ebon dune
#

Actually I don't want move everything to spinning disk... Better keep all home assistant stuff on SSD but only video records on HDD.

atomic stone
#

@ebon dune I am not aware of a way to do that

#

this is basically what I wanted to do also

worldly cliff
#

Is this the place to post If im having trouble with the Mosquitto Broker addon

#

Well either way, ```yaml
logins: []
anonymous: false
customize:
active: false
folder: mosquitto
certfile: fullchain.pem
keyfile: privkey.pem
require_certificate: false

#

Thats my config, but when I try to connect with a cliend_id, it says this Socket error on client <unknown>, disconnecting.

#

If i set anonymous to true, it will say New client connected from {ip_address} as {client_id}

coarse forge
#

falstaff321Yesterday at 00:15
@coarse forge the OS is really quite locked down, on purpose. It does only support intended use cases so to say. We do have the option to moutn an external partition as data partition using the datactl command

#

but i think there might be scope in the future to have a feature of adding additional disks for this purpose

worldly cliff
#

might want to @ ho youre talking to

#

who*

#

oh you did

#

nvm, im the dumb one

#

lol

coarse forge
#

well i was quoting someone @ ing me lol

worldly cliff
#

yeah, I didnt notice and at first thought you were talking to me ha

ebon dune
coarse forge
#

yea.. well it would only be persistent data that would therefore be slower. .. its just one of the partitions thats moved.. the rest of the OS stays on ssd/sd

ebon dune
#

it's looks like better buy additional hardware to install just motion eye on it...

coarse forge
#

the hdd will be formatted mind

ebon dune
#

It is interesting how @raven tinsel using MotionEye addon because he was a maintainer of this addon... I mean the situation is further complicated by the fact that docker installation of home assistant is deprecated...

ebon dune
#

aah, you mean move...

#

yeah, thanks

coarse forge
#

yea yea.. from what i can tell the OS itself as a built ro image will remain on the original disk

ebon dune
#

but I probably prefer buy separate device for motion eye

#

or just buy ready to go nvr

worldly cliff
#

Anyone here have experience with MQTT broker addon?

dense spadeBOT
#

Don't ask to ask, just ask your question. Then people can answer when they're around.

When you do ask a question, try to provide as much background detail as possible. Ask yourself these questions first so that others don't have to:

  1. What version of the Home Assistant are you running? (remember, last isn't a version)
  2. What exactly are you trying to do that won't work?
  3. Is the problem uniform or erratic?
  4. What's the exact error message?
  5. When did it arise?
  6. What exactly don't you "get"?
  7. Can you share sample code, ideally with line errors where the error occurs?
worldly cliff
worldly cliff
dense spadeBOT
viscid orchid
#

Please stop

dense spadeBOT
#

Rule #6: Please do not post codewalls (longer than 15 lines) - use sites such as https://hasteb.in/, https://paste.ubuntu.com/, or others.

Please take the time now to review all of the rules and references in #rules.

oblique frigate
# viscid orchid Please stop

My apologies. I didn't mean to send it twice. My formatting was intended to try to make the information look nicer while still adequately thorough.

sly kindle
#

@oblique frigate that's not an add-on. All HACs are integrations, but custom integrations

#

Or custom cards for lovelace

#

It's a store front for "unofficial" stuff

#

But none of them are HA add-ons

oblique frigate
sly kindle
keen heart
#

Hi! I'm working on getting adguard home to work and having a little bit of problem on the first step (the static ip one) I have followed the guide but still getting some errors when launching it and I'm certain that I have done something wrong. When setting the ipv4 address (set ipv4.address), lets say my homeassisstant is running on 192.168.2.30, what should i set it on and should i include "/24" ?

dusky yacht
#

Hey, I am running Deconz as addon on Home Assistant and can not add any more devices. Have bought some Hue lights and Ikea remotes, nothing will pair. I have already 12 bulbs, 15 sensors, remotes,... But now after few months after last device added, I can not add light or remote. Have tried to reset devices and restarted Deconz. What can i do?

eternal finch
#

I have bulbgs from tuya. They Are Gu10 RGBC (cold white only + RGB) in HA I cant set the color in WHITE. Does anyone know how to fix that? I have other bulbs from tuya, they are RGB+CCT (RB+ WW + CW) and they work because I have white ballance bar
PS: Custom Tuya and LocalTuya are what I use, and none of them solve the probleme

sour ermine
#

Hello, is there a way to run docker containers on homeassistant directly?

#

I want to install snowzach/doods and have direct acces to /www folder tu do some object detection, i have ha installed on a linux vm

eternal finch
#

search for portainer

#

@sour ermine

sour ermine
#

Thats a ui for docker, i dont have docker, when i ssh in ha and try to docker pull it says not known command

#

How do i install docker on ha server, and ha server is installed with ha image for linux vm?

sour ermine
#

Yes

eternal finch
#

rtfm

#

search for Debian + Ha Supervisor + Hacs

weary stratus
#

how can I install hacs in the new Version of ha

oblique hollow
#

๐Ÿ‘‹ allo people.
I'm reverse proxying Home Assistant with a pretty bog standard config.
In the ESPHome interface, whenever I try to show logs, validate a config, upload firmware, or do practically any other device function (other than edit), I see a pop-up saying "Terminated process" and nothing happens.
When I access HASS directly (as opposed to through the reverse proxy), this doesn't happen.
The ESPHome interface is an iframe, embedding https://home.mydomain.uk/api/hassio_ingress/LFlvX6K7bKX2h_N8ldlEl0olwBbmihp3NLgkEBSogaw/.
Does anybody know how I could resolve this? It's been suggested that I may need to proxy this URL directly. It'd be nice if I didn't have to do that, but I can if that's the only way ๐Ÿ™‚

#

Please @ me if anyone responds. I'm working so may not see otherwise!

sly kindle
#

@sour ermine you have docker

sour ermine
#

Yes i see that now, but when i try to pull image from ha console it says command not found and i assumed that i donโ€™t have docker i will check with portainer see if it works. Thx

sly kindle
#

@sour ermine The SSH add-on is a container itself. If you were to use the community SSH add-on with protection mode off you would have access to Docker commands

sour ermine
#

I directly connected to console of vm with the ha server, thats why i was sure that it doesnโ€™t docker installed but portainer works, thx.

sly kindle
#

when you are directly connected it would work, too.

#

You have to leave the HA cli by entering "login"

surreal vessel
#

making a usb drive a samba shared folder on HASS, is that possible?

sly kindle
#

this is just going to be a daily thing

ocean kernel
#

Hello fellas...

Wondering if anyone can give me a little help with my MQTT add-on (or, at least, i think thats where to start)...
Add-On loads fine, log shows the add-on picking up devices, but nothing shows in the MQTT broker integration.. (And now that I say that... im thinking, i should head also to integrations)...

sly kindle
#

did you enable discovery when you added the mqtt integration?

#

and are your devices also using discovery?

ocean kernel
#

yup and yup

#

so, this is just a rebuild of my old machine... but ground up...

#

all devices worked perfectly fine this morning when the OS was Ubuntu... redid the OS as Debian... not that that should make a difference on any level...

#

add-on log is showing that it is seeing the devices, no errors anywhere on the system... but the broker/integration just does not populate anything...

sly kindle
#

it can take a minute for some devices to show up in integrations. Sometimes I have to reboot them too.

ocean kernel
#

ive removed and readded both the integration and the MQTT server a couple times...

#

let me power cycle devices... see if that helps

#

power cycling... no go

viscid orchid
#

@oblique hollow Yes, ESPHome requires additional proxy rules for the websocket. You can find threads on the web, but I believe I had to add a location of "/api/websocket" forwarded to my HA instance with these additional rules:

#
          proxy_http_version 1.1;
          proxy_set_header Upgrade $http_upgrade;
          proxy_set_header Connection "upgrade";
#

I can't find the relevant threads now, but they're out there and I did eventually get it working

oblique hollow
#

Cheers @viscid orchid, appreciate that! Unfortunately I already have this.
This at the top of the file:

    default upgrade;
    ''      close;
}```
and then in the `server` block:
location /api/websocket {
            proxy_pass http://10.52.0.31:8123/api/websocket;
            proxy_http_version 1.1;
            proxy_set_header Upgrade $http_upgrade;
            proxy_set_header Connection $connection_upgrade;
    }
viscid orchid
#

I'll admit that nginx is pretty much black magic for me

#

maybe it was this bit:

#
location /api/hassio_ingress {
    proxy_pass http://192.168.1.169:8123/api/hassio_ingress;
    proxy_set_header Host $host:8444;
    proxy_redirect http:// https://;
    proxy_http_version 1.1;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection "upgrade";
}

oblique hollow
#

Ah, that could be it! I'll give that a shot, thanks mate

viscid orchid
#

np. I wore Google out the morning that I worked on this

sly kindle
#

@ocean kernel everything is the same on this new instance? ip address? hostname?

oblique hollow
#

Sadly no joy with that block either though

#

In the web console it looks to be a websocket connection for logs and the like, so I think I'll look into proxying websockets and see where that leads me.

viscid orchid
ocean kernel
#

oh...

ocean kernel
#

but none of my devices search by hostname... they're all direct IP...

oblique hollow
#

I've been through all the issues I can find with no joy ๐Ÿ˜ฆ I already had all of those settings configured

#

All good, appreciate the help anyway mate, I'll see where I can get to by breaking shit 'til it works ๐Ÿ˜„

viscid orchid
#

it's all black magic. still working for me, so there's hope

ocean kernel
hot fog
#

Good evening, Iโ€™m having severe problems with the ESP Home Addon. Every time I upload a firmware I got a 50/50 change of an flawless upload or my complete hassOS Instance is completely unresponsive for about 10 minutes including all add-ons and ha itself. I have absolutely no idea where to start looking, even native dev ssh in port 22222 is not working in that state...

cunning wolf
#

The answer would be to compile applications on something more powerful than a Pi.

#

Considering you can do OTA updates for ESPHome, there's no reason for the add-on really. Just run the build on your 'main' computer.

hot fog
#

@cunning wolf Good point, didnโ€™t specified that: Iโ€™m running HassOS on a 2,3 GHz quad core nuc. In 50% of the builds it take seconds to compile and upload :(
I think itโ€™s actually faster than my 7 year old laptop, thatโ€™s why installed it there...

cunning wolf
#

I'm still not sure there's any value in compiling in the add-on, tbh.

#

I tried it for a while and had similar lockups. No issues running esphome.py on the command line on my PC.

hot fog
#

Thanks for sharing that. I guess I just thought it would fit in there... I will try using esphome on my laptop

cunning wolf
#

It's a clever idea for an add-on, and I don't mean any disrespect to whoever created it... it's just not ideal for something that can be run from anywhere.

#

If you end up having similar issues even when running it on your laptop locally, maybe it's esphome.py and not the add-on.

hot fog
#

We will see. I will report my problems in another discord in that case ๐Ÿ˜…

hot fog
steel phoenix
#

Hi All!
I got a strange problem, the last 3 days my HA disk is starting to fill up. and fast!
Like 100GB / 24h

After a restart everything is OK.

I found today that if I just restart the Nginx Proxy Manager plugin i recover the space as well. but why?
Today just 4h between addon restart it grew 67GB that i recovered after addon restart.

Any ideas?

dim narwhal
#

Find the files, check whats in them, or which process writes to them, it may give you a hint

mild osprey
#

@copper zephyr you need to head over to "configure" on the addon and state the path of the certificates

cosmic fern
#

Howdie, i just installed HA supervised on a nfs mount (qnap) from debian 10.6 for some reason mariadb won't start: [ERROR] InnoDB: The Auto-extending innodb_system data file './ibdata1' is of a different size 0 pages than specified in the .cnf file: initial 768 pages, max 0 (relevant if non-zero) pages!

#

Anyone has a solition for that?

steel phoenix
#

Is there a way to browse the files for a add on?

#

The files in the container

haughty raptor
#

Is there a chance for HassOS to change SWAP size? Add-on eating me all 100%

weary stratus
#

Anyone know where the AdGuardHome.yaml file is located?

rich compass
#

trick question, why can't I restore MARIADB addon ?

wraith flame
#

If i was to add a cert for MQTT What should i make the url and subject? or should I just use my hassio ssl cert?

sour oar
#

i'm running into an issue where my duckdns won't update my SSL certificates

#

Once I reach this part of the log it just spits out blank WARNING: messages every five minutes.

  • Deploying challenge tokens...
sly kindle
#

@sour oar if you only configure it for the duckdns certificate does it succeed?

sour oar
#

as in, set the letsencrypt: accept_terms: to false?

#

no, doesn't seem lik eit

sly kindle
#

no. accept terms needs to be true

#

that's what enables certificate generation and retrieval

#

You said certificate(s) so I wondered if you had extra domains in there besides the duckdns domain

sour oar
#

ah, not quite. i have two duckdns domains. i've tried restricting the config to 1 duckdns domain and i get the same results.

#

my SSL certificate has expired

quaint marten
#

Hi! Trying to install add-on MotionEye but get "Failed to install addon, Unknown error, see supervisor"

#

20-12-05 09:52:53 WARNING (MainThread) [supervisor.jobs] 'AddonManager.install' blocked from execution, system is not healthy

weary stratus
#

Hi. Is it possible to connect an external database so Home Assistant can get data from this database?

quaint marten
#

Anyone using MotionEye?

ripe junco
#

Hello So I'm thinking of trying Monitor or Room Assistant to detect which room I'm i but I want to use my apple watch. I was watching a video on room assistant but theyre seems to be a slight delay with the apple awtch. My understanding is I can't use iBeacon because Apple changes the UUID. Anyway around the delay?

bitter falcon
#

Anyone had trouble with the HACS Wyze Sense Addin

#

I can't get it to recognize my Sense Hub Anymroe

dark yoke
quartz rivet
#

Anyone know how to get the cli to list the addons by page?

dark yoke
#

by page?

quartz rivet
#

I installed a bad one, can't get it to boot fully, and when I type addons it gives me many pages. | more, | less, and /p don't work though, and if I scroll up I only see the last few pages

#

So I can't see the full list of addons to find the name of the one I want to uninstall

dark yoke
#

pipe the response to a file and do what you need to it there ๐Ÿคทโ€โ™‚๏ธ

quartz rivet
#

I tried; piping doesn't seem to work either.

#

Alternatively, you know how I could install the ssh or smb plugins via the cli?

#

With either of them I could probably fix this in the files themselves

#

But I can't figure out how to install them via the cli

dark yoke
#

core_ssh core_samba are the slugs for it

cunning wolf
#

Do you mean your HA won't boot? If so, make a fresh install and restore your most recent snapshot.

dark yoke
#

but that has nothing to do with "can't get it to boot fully"

quartz rivet
#

Yeah, problem is, I just started experimenting with this and hadn't made a snapshot yet.

#

Well, it seems to boot fully, but the UI won't load

#

I had duckdns installed and disabled that

#

But I believe I managed a successful boot after that, and it was only when installing an experimental plugin that it then messed up

cunning wolf
#

If you haven't done much, there's not much to lose by starting again.

quartz rivet
#

Yeah, but I've done enough to not want to start over

#

Should have backed up. ๐Ÿ˜•

cunning wolf
#

Indeed

quartz rivet
#

You know how to configure ssh or samba from the cli perchance?

#

I've installed them both now

#

Ah; I can create snapshots in the cli though. So worst case, I can hopefully export one of those and then do a fresh install; just have to find where they go

#

That's most of my problem at least partially solved; thanks for discussing!

tender elbow
#

big thanks @raven tinsel for making the VS Code Remote add-on. Now I can remove the SMB for a more secure management of my config with my fav tool!

#

Can highly recommend it. It is currently in the edge channel

raven tinsel
#

Hehe that thing still needs quite a bit of work :S

#

cannot really recommend it to be honest ๐Ÿ™‚

#

(just because of that)

tender elbow
#

Yea but I think it works for what I use it for

#

๐Ÿ™‚

#

And edge is edge I guess... Expect to break... ๐Ÿ™‚

#

I guess there is no other way to connect through ssh right? (remote ssh in vscode)

#

(use hassos)

raven tinsel
#

nope

sour oar
#

i'm glad that the let's encrypt add-on still works; got my certs from that since the duckdns addon doesn't like to update them for me

glad hare
#

Confused .. I have two RPI's (Alpha x.x.x.x & Beta y.y.y.y) running HA and DuckDNS with NGINX. These Pi's are on the same local network and both have Ports 443 forwarded to the RPI's IP addresses. I can reach both Alpha and Beta on the local network using their ip addrs x.x.x.x:8123 and y.y.y.y:8123. However, I can only reach Alpha (x.x.x.x) with the registered DuckDNS name https: Alpha.DuckDns.org and it shows a good SSL certificate. When I attempt to reach the other RPI Beta.DuckDNS.org if receive an "Your connections is not private)

#

I can ping both ip's and have also run nmap against both PI's to ensure they have the services running.

#

I've verified the SSL certificates are located in the /ssl directory.

#

I've cleared the cache on the browsers (Chrome and Brave)

#

Its this the correct forum for this discussion?

clear gust
#

Are there any known serious problems with the authentication mechanism in the latest Alexa Media Player? I am asking because the following problem started to appear a couple of days ago where once a day Alexa Media Player fails to authenticate with the correct username & password resulting in blocking my Amazon account such that I have to reset the password.

cunning wolf
#

Use the newest version with 2FA.

clear gust
#

I have tried to avoid 2FA as long a possible by using long and sophisticated passwords. OK, it seems that the time has come and there is not way around 2FA. ๐Ÿ˜ฆ

cunning wolf
#

Passwords as protection are unreliable. 2FA is nearly unbeatable.

#

More people should be using 2FA for everything.

clear gust
#

Yeah, sure. But 2FA can be really a pain in the a. For example, if you have to use your phone during the authentication process and you don't have your phone with you because you left it at home, etc.

cunning wolf
#

If you're logging in to something, you're on an internet-capable device, right? Add your OTP code generation to HA and always have access to your codes ๐Ÿ˜‰

dense spadeBOT
spare sage
#

Hi All, novice home assistant user here. i would like to build mutli room audio system - diy option. i installed mopidy addons from "hassio-addons/edge" and snapcast server using "https://github.com/raph2i/hassio-addons". i have mopidy up and running. From the snapserver, it seems to be running but showing "not connected" in the mopidy settings. just checking if anyone succeffully install these two? I am running HassOS on Ubuntu server. thanks
source: https://community.home-assistant.io/t/snapcast-server-snapcast-client-and-librespot-repository/136180

clear gust
#

@cunning wolf OK thanks, I will try. First attempt was not working. Got blocked again. I will restart Home Assistant and try again.

#

@cunning wolf I don't know why but I needed three attempts to authenticate successfully.

#

All three with the same user, password, and 2FA code.

cunning wolf
#

๐Ÿคทโ€โ™‚๏ธ

clear gust
#

Yeah, me too. Really strange.

#

@cunning wolf Anyway, it seems to work, at least for now. Time will tell. ๐Ÿ™‚ Thanks for the help. Now I have just one remaining problem to solve and then I am happy.

#

I have experienced that secondary_info disappeared in the battery-state-card after the update to the latest version. So I downgraded to the previous version but secondary_info is still missing.

oblique badger
#

I manually installed Home Assistant on an existing Rasp Pi install. Is this why I can not find Add-Ons

#

?

#

Meaning I do not see "Supervisor" on my left side of the main screen

last patrol
#

how can I get to the compiled binaries from ESPhome? I need to flash one to a Tasmota conversion

pastel tangle
dense spadeBOT
#

Not sure which install you're using? If you have system_health enabled you can check Configuration -> Info, or see the following.

  • If you're using HassOS, flashed an image, or booted a VM with an image you're using #330990055533576204

  • If you installed Linux and then ran a script to install HA and have add-ons then you have #330944238910963714

  • If you're running docker commands or use a Docker manager and have no add-ons then you have #449717345808547842

  • Finally, if you use pip to install or upgrade you have #551864459891703809

Having difficulty chosing an install method? See this blog post for guidance.

oblique badger
pastel tangle
oblique badger
#

i'll just order a new RaspPi and get the image... appreciate your help @pastel tangle

pastel tangle
#

no problem ๐Ÿ™‚

#

you could go with supervised of course

oblique badger
#

my brain is exploding with trying to learn all this in a day. I will see if I can install a mosquitto broker on the Rasp Pi and see if that will be good enough, until my new RaspPi comes in and then I will do the easier path. I am happy that I could figure out how to flash Tasmota to some old smart plugs I got off of Amazon. I just want to turn one switch on and off with sunrise and sunset. But now that I see how cool and powerful Home Assistant is, I want to really learn more.

pastel tangle
oblique badger
#

thanks. and have a great rest of the weekend

viral crystal
#

Hello, does anyone know how I can trigger rebuild of an existing addon ? I've just manually edited the Dockerfile & build.json of deconZ to try out more recent version in beta channel

timber garden
#

Hey Guys, does anyone know how to use the latest Deconz Beta with the Addon? Ist there an option to do this. Didn't found anything in the forums. Cheers

timber garden
viral crystal
#

I was more thinking about launching the same procedure as for normal update of the plugin, not really create a duplicate

#

adapting the version number and changing path/stable/.. to path/beta/..

timber garden
#

Yes this would be more convenient, also thought about that. But I think it would be easiet if you could specify the desired release channel as an enviroment variable, would that be possible? Like {RELEASE_CHANNEL} or so

viral crystal
#

Yes for sure that'd be ideal, but this is something that'd require a change from the addon maintainers

dark yoke
#

Yes, but no.
Non-local (development) add-ons are ment to be static, if this was a possibility you would need to rebuild on each start, and at that point you are in the same situation as running it as a local (development) addon

blissful salmon
#

hello, I'm trying to do firmware updates of homematic-devices usint the occu-addon, but i dont know how. a while ago the startpage of occu notified me about available firmware, that i could then download, upload to "Settings -> Device firmware". but that notification is gone and i dont know where to download the firmware from. any hints ?

next valve
#

Good afternoon

#

I needed a new install of mqtt addon

#

Now i think it is only receiving and not sending anymore

cunning wolf
#

MQTT brokers never send, they only listen.

#

Something else has to subscribe to your broker to see the changes. It's more likely that's where your problem is.

next valve
#

My HA is able to get messages from the mqtt broker

#

Previously i could also send from HA and my sonoff would switch

cunning wolf
#

So it's working ๐Ÿคทโ€โ™‚๏ธ

#

What's the actual problem? You haven't explained the issue.

next valve
#

It is half working. I am able to see my sonoff connecting. I see ha connecting. But somehow i cannot cotroll the sonoff...

hybrid prairie
#

I've gotten my RaspBee II to talk to deCONZ in my Raspberry Pi 4B with the HA OS. However, it doesn't discover any of my devices. Any advice?

harsh basin
#

I cannot figure out the duckdns/port forwarding. I installed the hass.io image on a pi 3. Followed some guides and got the basics setup correctly. But when I did the duckdns, I couldn't get it to work and now broke something. I got my key and subdomain and changed my config file. Then I tried to setup port forwarding. Now I can't access home assistant like I was (ipaddress:8123), and if I try to access via subdomain, it just directs to my router login. I can't check any settings in home assistant because now I can't even login. I'm willing to start with a fresh install, but I think I'd end up in a similar position

sly kindle
#

@harsh basin once you add the lines to configuration.yaml you can only reach it using https:// in your browser

#

http:// will no longer work

#

so https://local_ip:8123 should show you a warning in your browser, which you can advance through

harsh basin
#

that fixed the issue as far as getting into home assistant login again. thanks.

sly kindle
#

not really a fix. That's just how it works

harsh basin
#

well it fixed MY issue

sly kindle
#

lol

#

so the part where you get to your router indicates a router admin page is enabled

#

what port are you forwarding?

#

Everything is configured correctly it seems, in regard to duckdns and your config

harsh basin
#

this is what I have right now (netgear router). I had previously had 443 instead of 8123 and was trying different things I saw in various forums

#

thought I could paste an image. I'll type it out. I have external start port and internal at 8123, then internal start port and end port both also at 8123

#

but I did try it with 8123 and 443 (though now I can't remember if I did it for internal or external) I was following a guide

sly kindle
#

external 8123 to internal 8123 means you would need to include :8123 at the end of your url

#

external 443 to internal 8123 means you would not need :8123

harsh basin
#

oh dang. ok is that the only difference? is one preferable to the other?

cunning wolf
#

Not having to remember to type a port number every time is normally preferable.

harsh basin
#

makes sense

#

thanks so much. I spent hours pulling my hair out last night. you fixed that in like 5 minutes. much appreciated@sly kindle

maiden hedge
#

Hyy guys , for MQTT , i've data every 15s, it's possible get data every 15s ?

maiden hedge
#

How

cunning wolf
#

It just... happens.

#

MQTT is pub/sub. Whenever a new message is published, subscribers receive it.

maiden hedge
#

I know, if get Temperature "19ยฐ" I need waiting 15s for get new data and between 15s I've "0ยฐ" because I don't have data

old jolt
#

I have an RGB bulb that Iโ€™m trying to use node red to express notifications. I have that working, but how do I make the bulb return to whatever state it was previously in before the notification was triggered?

sly kindle
fiery ingot
#

hi there
is it possible to reach the add-on "IDE from Cloud 9" also via internet?

sudden tartan
#

I added spotify as add-on to hassio

#

question: the poor quality is based on hardware right? pi3 has poor sound otput

#

what I need to buy? some DAC?

sly kindle
#

@fiery ingot further updates to that addon ended and it has been deprecated. You might check file editor or vsc add-ons instead

#

@spring carbon you can...

#

what's happening

#

why are you removing those ๐Ÿ˜‚

spring carbon
#

I fixed it I guess remove all my waste

sly kindle
#

lol, ok

spring carbon
#

Power on pcie in bios fixed it eventuay

sly kindle
#

Those weren't really wasteful. especially since you added how you resolved things. The discord search works pretty well and someone else might have come across it

spring carbon
#

You are right would be better to post the outcome

sly kindle
#

It's ok...just something to consider next time

spring carbon
#

๐Ÿ‘

harsh basin
#

edit: trying for the 25th time, it now works. As far as I can tell, nothing changed. But it's working now.
I think all of my issues are related to my complete lack of knowledge for networking. I'm trying to learn, but there are things I just don't understand. I installed nodeRED and updated config in a few different ways based on suggestions I found online (all iterations of SSL true/false for example). Every guide I have seen shows clicking the "open web ui" and it goes to nodeRED dashboard. When I click it, I get 502: bad gateway. Can't connect via IP either. I have duckdns set up and setup port forwarding for that and also for nodeRED. But I'm stumped.

spring carbon
#

Starting a computer and shutting it down (short tutorial)

First you need to setup WOL (wake on lan) on home assistant. You can do so by making a switch in which later on you can implement in automations. You can do so by adding the following script to your configuration.yaml

  - platform: wake_on_lan
    name: computer_on_button
    mac: [put the macaddress of you pc here]
    host: [computer internal pc address here, for example 192.168.1.100]```

You can do the same for a new samsung tv. find the option "ip of remote" in the settings and turn it on.

When this is set reboot HASS

Go to your pc - configuration - device management and go to network. Select your network device and go to properties. Go to power management en turn on magic packaging to get pc out of sleepmode. (sorry for my bad translation)

After that reboot pc and go into bios. In here find the option: power on with pci-e and turn that on. Save and boot back to windows. You have now succesfully setup a wake on lan integration in HASS
dense spadeBOT
spring carbon
#

omg damn bot

dense spadeBOT
spring carbon
#

ok never mind putting a tutorial in here people can use is useless with these bots

half blade
#

This is not the place to put a tutorial.

main marlin
#

Hello. I need help with DuckDNS. How I create SSL Certificates?

#

Iโ€™m using Ubuntu Server on a virtual machine on my old Mac.
HA Supervised 0.118.4.

cunning wolf
#

It's great that you want to share what you've found, so don't be put off by the bot. ๐Ÿ™‚

#

One note on your steps... it's not always that easy to turn on the right options in your network adapter's settings. Mine wouldn't work with WoL no matter what I tried until I found the correct drivers (the ones Windows installed automatically didn't show half the options).

vague basalt
#

any tips to get HACS to revive itself after dying? I think I updated some components and now the page is blank whenever I try to go into HACS, tried multiple browsers and devices

cunning wolf
#

HACS isn't an add-on ๐Ÿ˜‰

#

Ask over in #integrations-archived if you're stuck with it but I'd suggest checking your HA logs as there are likely clues there.

vague basalt
#

thanks!

sly kindle
#

@main marlin The add-on retrieves the certificate and files and keeps your ip address updated with Duckdns and nothing beyond that. The first step is to succeed with that step, and then configure HA to use them with the http: configuration. You've got it a little backwards there and thus the error.

#

Restart the add-on and then check the addon logs

onyx olive
cunning wolf
#

I doubt AdGuard can rewrite URLs for you. To a browser, that would look like a man in the middle attack.

#

You need to run something on the browser itself to identify and rewrite those addresses.

onyx olive
polar crest
strange cove
#

does someone know where the git config for the vscode addon is located? i have to change a port but i dont know where:D

#

oh obviously in the .git folder

#

๐Ÿ˜„

void steppe
#

hi. is it possible to set a reference to secrets.yaml when i use addons?

dark yoke
#

yes

#

some_key: "!secret somesecret", the quotes are important

void steppe
#

i will try again, thx ๐Ÿ™‚

void steppe
#

is it possible to put the configuration for addons into the configuration.yaml?

dark yoke
#

no

void steppe
#

but i can add settings to the configuration like in the configuration.yaml?

dark yoke
#

settings?

void steppe
#

idk how to describe ๐Ÿ˜ฆ for example when there is no option for discovery.... is it possible to set discovery: ture?

#

do you know what i mean?

dark yoke
#

discovery is an integration

void steppe
#

that was just an example ๐Ÿ™‚

#

maybe bad but just tried to describe

dark yoke
#

whaterver you are trying it will not work

void steppe
#

For better understanding
If i go to:

#

is it possible to copy that into addon configuration

dark yoke
#

No

#

integrations are not addons, addons are not integrations

dense spadeBOT
#

Some integrations are added with YAML, some in the UI. Check the documentation for your integration to see which method it uses.

proper kettle
#

I have some questions about the wireguard add on. Not sure where the best place to ask the question so let me know if there is a better spot for this. I use HA container and a WG container. I see that the WG add on has a rest API added to it so you can get user VPN status in HA. Iโ€™m curious how I can implement something like that on my WG container?

charred timber
#

can someone help with with the NGINX addon ? i want to proxy a local machine through the addon with ssl. how do i do that ?

distant bay
#

Hello Community, I would like to Install ESPHome first in my life. Im using HA-Supervised. I went to Add-ons, added the github repo link and click to install.
"Error: Failed to install addon "Unknown error, see supervisor"

20-12-08 19:18:01 WARNING (MainThread) [supervisor.jobs] 'AddonManager.install' blocked from execution, system is not healthy
20-12-08 19:18:10 WARNING (MainThread) [supervisor.misc.tasks] Watchdog/Docker found a problem with observer plugin!
20-12-08 19:18:10 INFO (MainThread) [supervisor.plugins.observer] Starting observer plugin
20-12-08 19:18:10 INFO (SyncWorker_3) [supervisor.docker.interface] Cleaning hassio_observer application
20-12-08 19:18:12 WARNING (SyncWorker_3) [supervisor.docker] Can't attach hassio_observer to hassio-network!
20-12-08 19:18:14 ERROR (SyncWorker_3) [supervisor.docker] Can't start hassio_observer: 500 Server Error for http+docker://localhost/v1.39/containers/f883e5a4e05f45327d87eb420d27b84162c512164f131e055716a5a04e39f2de/start: Internal Server Error ("driver failed programming external connectivity on endpoint hassio_observer (6a5f6b0991f757085066e43acea824ef528e96c443ed6c163268568ad8824e05): Bind for 0.0.0.0:4357 failed: port is already allocated")
20-12-08 19:18:14 ERROR (MainThread) [supervisor.plugins.observer] Can't start observer plugin
20-12-08 19:18:14 ERROR (MainThread) [supervisor.misc.tasks] Observer watchdog reanimation failed!
sly kindle
#

no

unborn temple
#

I recently had my HA server crap out on my but I am able to recover stuff from the SD card it was running with. I was using deconz with Phoscon for some zigbee devices. Since I am a moron, I didn't have a good snapshot of HA to restore from. Is there a way to recover the Phoscon/Deconz config with the devices I had? I have the DB from deconz that contains all the data but how do I restore that?

rain widget
#

Does anyone know when the next update for the Deconz add-on will be released? Thanks!

gleaming steppe
#

Question about the motioneye addon: If I want to add one of the camera feeds to my dashboard, can I just point to the container name? a0d7b954_motioneye, in this case?

polar crest
dark yoke
#

The add-on handling is special

#

It's really JSON, which is parsed then sendt to SU for validation, when you use !* which are valid YAML, it get's confused

polar crest
#

makes sense

odd wave
#

apologies if wrong channel.

how much will mqtt server from hass os hurt my pi2? I only do a few things like reading a few sensors for lights and my garage and some software on my pc. it shouldn't be too resource hungry, right?

viscid orchid
#

I don't think it will have much impact. It's just waiting (mine uses 0% CPU most of the time) and handling pub/sub is low-impact

obtuse crow
#

Hi everyone. I have a wireguard questions. I have it all setup and works AWESOME. Have been able to get all of my android devices connected to HA via wireguard with no problems. My issue is around getting my linux desktop setup as a client. For some reason, I can't get my desktop to connect. I have tried SEVERAL tutorials. Does anyone have a good tutorial on how to setup a Linux client to access HA via wireguard? As a side note, one tutorial says I need to put the Clients PublicKey into the Servers side (HA) - I suspect that is where I am missing because not sure how to do that?

weary stratus
#

anyone using the tautulli add-on and have access to your (external) plex server logs?

#

Can anyone confirm that duckdns.org is currently down? Have not been able to access it for the last 12hrs or so

#

working fine here

#

probably, my work network is blocking it

tribal stag
#

This relates to duckdns.org, SSL, tasmoadmin & ngnix.
Hi peoples, I am running hass.io o/s on a raspberry pi3+ and so far all is running well. Or at least like the other 25+ hassos instants I have installed. I have just installed the latest version (installed from scratch) today. (HassOS 4.17, Supervisor 2020.12.6). I am attempting to lock down the configuration in an AirBNB location and was attempting to integrate NGNIX. All worked fine with the base https://xxx.duckdns.org/ external connection & with in house https://xx.xx.xx.xx:8123/ connection, and with node-red add-on, but when I use an add-on in my case TasmoAdmin which uses port :9541 I can not connect to it. I suspect this is due to the configuration of NGNIX. So I am attempting to understand how I can configure NGNIX from with in hassos. This seems to be missing from the documentation. Additionally I cant not see in any logs as what is happening to the network connections. Hope someone can point me in the correct direction or to a blog which has some additional ideas. Just seems somethings are not fully expanded apon.

Hope people can help!

hot escarp
#

Is it possible to enable addons with the cli. I want to enable the Samba addon so i can change the configuration.yml because the frontend is not working.

tribal stag
austere epoch
#

Anyone using the SambNAS addon to connect HASSIO to NAS?

#

SambaNAS

neon spindle
#

Hi, when I try to use the 'cover' service for opening/closing my tuya blinds node red (and even the developer tools too) gives me an error that the extra keys are not allowed. The key responsible is the 'position' key, while in almost every documentation of it, I find that this key can be added to close it for a percentage (number between 0 and 100), what could be the problem here?

cunning wolf
neon spindle
#

sorry about that, I'll repost it in the correct channel

rapid lava
#

Where's the config for the Terminal & SSH add-on? I understand I can put my ssh key in the config, but can't find where that config is

sly kindle
rapid lava
#

Ahhh... lol... I was looking on the filesystem ๐Ÿ™‚

void timber
#

I'm getting 'Ingress' errors with OpenZwave, was told this was more an #add-ons-archived topic than a #zwave-archived one:

20-12-10 15:16:54 ERROR (MainThread) [supervisor.api.ingress] Ingress error: Cannot connect to host 172.30.32.1:64901 ssl:default [Connect call failed ('172.30.32.1', 64901)]
20-12-10 15:16:54 WARNING (MainThread) [supervisor.misc.tasks] Watchdog found a problem with core_zwave!
20-12-10 15:16:54 INFO (SyncWorker_0) [supervisor.docker.interface] Cleaning addon_core_zwave application
20-12-10 15:17:00 INFO (SyncWorker_0) [supervisor.docker.addon] Starting Docker add-on homeassistant/aarch64-addon-zwave with version 0.7.1
[10:53 AM]

I've tried rebooting everything, restarted my network, everything suggested by some post about IP/DHCP issues, and still getting those

sly kindle
#

Is it in the sidebar?

void timber
#

OpenZwave? It is

sly kindle
#

What are your external/internal config settings?

#

At configuration > general

void timber
#

Empty

#

which seems odd

sly kindle
#

do you have remote access configured?

void timber
#

no

sly kindle
#

you might fill in both with http://ip_address:8123

#

I don't know if it's related

void timber
#

IP, not homeassistant.local?

sly kindle
#

well...if you trust your mdns to always work

void timber
#

i trust nothing

#

(to always work)

sly kindle
#

that would be fine, with :8123 at the end

void timber
#

i'll do IP, i've got it reserved

ocean kernel
#

Hey guys... anyone familiar with Room Assistant... and PIR sensors?

sly kindle
ocean kernel
#

no, hard wired

#

with raspberry pi zeros

#

i missed something, and im not sure what... HA seems to be seeing them fine... but they seem to not be sending state changes

sly kindle
#

@ocean kernel what integration do they use?

#

and how does it relate to room assistant

ocean kernel
#

Room Assistant

#

MQTT

#

room assistant is the add-on that monitors their state

#

MQTT is what is supposed to report the state

#

but.. i think the problem is on the Pi side... i THINK im not getting input from the sensor... digging into a python code that will hopefully help me troubleshoot (its so much more difficult without decent logs)

sly kindle
#

room assistant uses bluetooth and mqtt. I'm not familiar with using it and pir sensors. I assume those would be separate things

ocean kernel
#

sort of...

#

room assistant is built with the main purpose of monitoring BT as it gets closer to/ further away from a BT receiver...

#

However, it is also able to use a PIR sensor (or switch of another type) to send "room occupancy" signals to HA

#

BUT... my Pis dont seem to want to monitor the GPIO they're hooked to (at least according to my interpretation of the feedback from a python script i just cobbled together)

#
i=0
while i < 4 :
        import RPi.GPIO as GPIO
        GPIO.setmode(GPIO.BOARD)
        GPIO.setup(23,GPIO.OUT)
        if GPIO.input(23):
                print('Input was HIGH')
        else:
                print('Input was LOW')
        GPIO.cleanup()
        continue
#

gives back nothing but "Input was LOW" when it should be dumping out "Input was HIGH" when the PIR detects motion

velvet charm
#

Hi, is there some way to know the size GB of an addon? My backup is 3.5GB and if it's possuble I want to know what are the bigger parts

sly kindle
ocean kernel
#

sounds good...

sly kindle
#

@ocean kernel just based on...you're using some of your own python, and making use of GPIO. ๐Ÿ˜›

ocean kernel
#

oh, no... im just using the python for testing...

#

it should just be a script that basically dumps out "MOTION" when the motion sensor detects motion.... solely for testing purposes... RA would handle this normally in the background simply by monitoring the GPIO...

sly kindle
#

are you using room assistant BT in combination with that?

ocean kernel
#

i would be, yes

sly kindle
#

ok

ocean kernel
#

BT is for room permenance... PIR would be for entry detection

#

so... you walk into living room, immedialtey the lights turn on because the PIR detected motion... if you leave, they'll stay on for 5 minutes... if you sit down and continue to make no motion, the motion sensor will think youve left the room, so it also monitors BT... so that if you dont leave the room, the lights still stay on until told not to...

#

or... at least... thats the theory

sly kindle
#

right. sounds good anyway

ocean kernel
#

i built a magic mirror with the same sort of basis... but, that went WAY smoother... same devices...

ocean kernel
#

though... they make it sound WAY easier than it seems to be ๐Ÿ™‚

sly kindle
#

๐Ÿคฆโ€โ™‚๏ธ I don't know why...I find the site confusing to navigate...yet it was right there

#

thanks

ocean kernel
#

uh... yeah

#

it is... um... clumsy

#

and still somehow simple

sly kindle
#

exactly lol

spark current
#

Hello...i need help with Mqtt server/broker settings...I try many time but i no have data from my inverter..I follow many guide,but not related to Home Assistant later version...so I think i miss something...First problem is Mqtt Ip server setting...which ip should i use?...the same HA interface ip?.....and username and password?...where i put? in yaml file...in Mqtt broker settings?

#

i already create a new user in Home assistant..and used that for mqtt server password...

#

where have to put username-password and Ip and port? in comfiguration.yaml...and also in mosquito broker setting?...can not understand...i m noob here...but i follow and follow again guides...some say no need Ip and password because Ha uses user and password from system...

#

some guide say to put ip 0.0.0.0....i try...but no work...

#

please need help

viscid orchid
#

a) you use the IP of your Home Assistant machine

#

b) it uses Home Assistant users, so you don't need to specify logins if you don't want to:

#

Option: logins (optional)
A list of local users that will be created with username and password. You donโ€™t need to do this because you can use Home Assistant users too, without any configuration. If a local user is specifically desired:

#

c) don't put anything in configuration.yaml. you can configure the broker that HA uses through Configuration->Integrations

#

in short, just follow the addon docs

spark current
#

a...you mean the same Ip i use to connect to ssh or in th ebrowser to access home assistant?

#

i try many time...but no result

viscid orchid
#

review the addon logs

spark current
#

i see can configure Mqtt is Configuration/integration...and Supervisor/mosquito Broker.....where i nedd to configure?

viscid orchid
#

have you reviewed the addon logs?

spark current
#

because i also see in portainer...mosquito ip are 0.0.0.0..?!

ocean kernel
#

what IP address do you use to log in to HA?

spark current
#

log is ok...i also try connecting from windows by Mqtt explorer..and was connecting

#

192.168.96.116

ocean kernel
#

then that is the IP address of your MQTT broker... assuming you are using the MQTT add-on in Home assistant

spark current
#

yes i m using that one from HA

viscid orchid
#

0.0.0.0 just means "accept connections from anyone". It's not the IP that you use to connect to the broker

spark current
#

this my Supervisor/mosquitto broker: logins:

  • username: mqttuser
    password: xxxxxx
    anonymous: false
    customize:
    active: false
    folder: mosquitto
    certfile: fullchain.pem
    keyfile: privkey.pem
    require_certificate: false
ocean kernel
#

can you power cycle the UPS (im assuming thats what the device is)

#

it sounds like the device isnt sending its birth command (or whatever we call it now)

spark current
#

if i make this command inverter answe me:docker exec -it voltronic-mqtt bash -c '/opt/inverter-cli/bin/inverter_poller -d -1'

#

so is connected...but no data in HA

ocean kernel
#

can you see it in the MQTT integration?

spark current
#

dont know where to see

ocean kernel
#

configure > integrations

#

MQTT integration...

#

click on devices

#

see if its in the list

spark current
#

no have

ocean kernel
#

it should have added it automatically when you installed the MQTT add-on

#

are you using a supervised version of HA? or their core?

spark current
#

supervised

ocean kernel
#

then yeah... when you added the MQTT add-on, and go to integrations, it should have auto-discovered the MQTT server....

#

try rebooting?

sly kindle
#

I would remove the mosquitto broker and restart HA

spark current
#

in configuration/integration have Mqtt server icon

sly kindle
#

And remove that too

spark current
#

ok..i will try..

sly kindle
ocean kernel
#

4?

#

im so disappointed in you

sly kindle
#

I have two HA installs

spark current
#

yes

sly kindle
#

this is the little one

#

in terms of mqtt

spark current
#

but no devices and noentity

sly kindle
#

use the three dots and remove it

#

go back to add-ons and remove the mosquitto addon

ocean kernel
#

how on gods earth do i attach a picture

spark current
#

ok

sly kindle
ocean kernel
spark current
#

moment restart Ha server

ocean kernel
#

THANKS!

#

mqtt and node-red seems like the smoothest setup with Tasmota flashed things... so, MQTT does a lot of the heavy lifting)

sly kindle
#

I've also been checking out the new tasmota integration and have migrated a dozen or so things to that

spark current
#

i need you clarify me this point please....have mosquto server in Configuration/Integration...and Mosquito broker in add ons....which one of them i must set user and passw and Ip?

ocean kernel
#

add-ons

sly kindle
#

none of them

spark current
#

?!

ocean kernel
#

he needs to set up the add-on configuration to have the U/P

sly kindle
#

install the broker addon. leave the default config alone

spark current
#

ok..moment

ocean kernel
#

next you're going to tell me that firewalls are useless ๐Ÿ™‚

sly kindle
#
anonymous: false
customize:
  active: false
  folder: mosquitto
certfile: fullchain.pem
keyfile: privkey.pem
require_certificate: false```
#

leave it like that

ocean kernel
#

OMG... id PIN 1234?

spark current
#

ok...now error installing mosquito:Failed to install addon
Unknown error, see supervisor

sly kindle
#

so see the supervisor

#

what's it say on the system tab

#

@ocean kernel the broker already makes use of any HA users you have

spark current
#

20-12-10 19:48:55 WARNING (MainThread) [supervisor.jobs] 'AddonManager.install' blocked from execution, system is not healthy

sly kindle
#

it can be an existing user or one you create specifically for mqtt

ocean kernel
#

hmm... didnt know that

spark current
#

i try to cancel mqtt user?

ocean kernel
#

no, fix the unhealthy

sly kindle
#

supervised installs suck

ocean kernel
#

go to SUPERVISOR > SYSTEM

#

and check what the unhealthy is for...

#

probably your OS... or supervisor permissions

spark current
#

ah,,,dipends from supervided installation....now i understand why i had to format my ubunto several time because Ha crashed every times

ocean kernel
#

if supervisor permissions... let me see if i can find the script

spark current
#

hahahahah

ocean kernel
#

yeah, i switched to Debian for mine...

#

its a learning curve to go from Ubuntu to Debian... but theres a really good walkthroigh to make it fairly fast

spark current
#

now im using a old laptop...but would like to buy a raspberry pi 4

gilded quail
#

Get a NUC if you want small form factor

ocean kernel
#

depending on age of laptop... laptop might be better

#

i use an old Dell 3050 USFF i had laying around...

spark current
#

mmmm...i would like pi because i would like to integrate the solar panel orientation with 12v motor...and sun.sun entity..so i think i need P4...can do with Nuc also?

ocean kernel
#

you trying to use GPIO on Pi?

spark current
#

mmm ...aaaa....not sure what you ask...

ocean kernel
#

why a Pi4?

spark current
#

yes GPIO

ocean kernel
#

why not use a stepper motor and an ESP chip...

#

gotcha

spark current
#

i see WGCD L298N drive motor

#

i m very new here...i must learn many thing

ocean kernel
#

yeah, i use those for contolling blinds... along with a buck converter... and an ESP chip

spark current
#

stepper motor and an ESP chip...what is?

ocean kernel
#

no worries.. im pretty new here too

#

hold on... let me see if i can dig up something similar to what i did

#

these are shades... but you can convert the same to move a solar panel...

spark current
#

i see thins WeMos D1 Mini ESP8266 ESP-12 ESP12 D1 Mini NodeMCU Lua IOT Board 3.3V With Pins

#

and similar board...can be arduino..dont know

#

is your video?

ocean kernel
#

no, not mine

#

Dr zZz

#

Dr. zZs

spark current
#

ok,,isee many video.

#

i would like to make solarpanel muve at least left and right(east west) and if can,olso following the azimuth...

ocean kernel
#

the link i sent you sounds like it is similar to what youre trying to achieve... just rotated by 90 degrees

spark current
#

would be very good for me...i stay in small island in Thailand and electric is veru expensive

ocean kernel
#

you would use 2 motors to do that... one X, one Y

#

the script would be interesting to see for that...

spark current
#

yes

#

but i dont know how make motor follow elevation,taking data from sun.sun...

#

actually im not able to do...

ocean kernel
#

well...

spark current
#

mosquito add on can not install error ..i restart server

ocean kernel
#

i would say, a rail system that the panels are mounted on on 1 motor for X axis... and another rail system that the first rail system is mounted on and driven by a motor for Y axis...
Then add automation... you should be able to pull Y angle from a weather page linked with your exact coordinates... and do a little math on how high the sun is throughout the day/year... then east west is pretty easy... you know how long a day is, just set start position and end position... then move the X axis across those two positions in the amount of time your day lasts...

#

whats the error?

spark current
#

same space station...very light and easy to do

cunning wolf
cunning wolf
#

Whichever. Just not here.

spark current
#

yes...soi restart the server...and try to install mosquitto

ocean kernel
#

what is the error you are getting when installing mosquitto?

spark current
#

Failed to install addon
Unknown error, see supervisor

#

again

ocean kernel
#

so,,, see supervisor...

dense spadeBOT
ocean kernel
#

whoa

#

ok... so... you're running in an unhealthy state....

spark current
#

look like

ocean kernel
#

so... go to supervisor...

#

top row, click on SYSTEM

#

there will be boxes at the top that give you an indication of what it doesnt like with your system

#

Under SUPERVISOR... it PROBABLY says that supervisor does not have permissions...

spark current
#

You are running an unsupported installation. Learn more
Your installtion is running in an unhealthy state. Learn more

ocean kernel
#

there will be a link next to that... and if you click on it, it should give you instructions on how to fix

#

unsupported and unhealthy are 2 different flags...

#

unsupported will still work... its just not supported.,,

#

unhealthy is usually fixable... click the link, follow the instructions...

#

click LEARN MORE

spark current
#

installation is because ubuntu 20.4

#

the other i dont know...start from this morning..when fail to update to Supervisor 2020.12.6
You are currently running version 2020.12.dev0701

#

i have to say also that for access HA i must go to Portainer and restart many container because are stopped

#

this happened from this morning..

cunning wolf
#

So use a supported installation method ๐Ÿคฆโ€โ™‚๏ธ

#

It sounds like you don't know much about computers but you're running an unsupported version ๐Ÿ˜

spark current
#

is first time installation...i used supervised....not good?

cunning wolf
#

Supervised is fine if you use the supported methods.

#

It's also for... advanced users.

spark current
#

supervised..sorry

#

i m going to buy a pi4...and what installation is better to do?

#

what you mean supported method?

tribal stag
cunning wolf
#

If you want to install the supervised one, there's only one official way to install it. It's described in the pins in #330944238910963714

spark current
#

but can not use GPIO

cunning wolf
#

Unsupported

spark current
cunning wolf
#

I have no idea. Ask in that channel.

#

This channel is for add-ons ๐Ÿ˜‰

spark current
#

yes...we was talking about Mqtt first..

cunning wolf
#

And now you're not. So go to the right channel

spark current
#

mmm...from mqtt have problem to install..because supervised...thats why come out talking about installation...

#

i m ok

#

here

#

supervisor say The Docker environment is not working properly

#

so can not reistall mosquitto..

cunning wolf
#

Yes. Your add-on doesn't work because your installation is broken.

#

Fix your installation first

#

This is 100% not an add-ons conversation anymore.

#

๐Ÿ‘‹

spark current
#

..mmm sarcastic...it start about Mqtt server..and goes to installation...

#

what shold do...jumping elseware while i m chatting with others that are helping me?-..

#

i no understand...your answers are not usefull..dont give information...

#

according to the rules you should answer if you want to contribute to solve the problem...not say this and that ,,,bla bla bla..

cunning wolf
#

My answers are useful. I'm showing you the right place to ask to get the right help.

spark current
#

sorry...but is not like this

#

you jump here and bla bla bla

#

no info..

cunning wolf
#

You want help, yes? Go to the right place.

#

๐Ÿคฆโ€โ™‚๏ธ

spark current
#

again

#

i start with Mqtt..so is the right place,,

jade wing
#

@spark current Please use the right channel for your question - all these channels exist for a reason

spark current
#

i m new here so i dont understand...i asked help for Add_On Mosquito Mqtt...is this the right place?

jade wing
#

For that, yes, but not with your diversion to asking whether #330990055533576204 can use the GPIO

cunning wolf
#

Or about DIY solutions to solar panel tracking ๐Ÿคทโ€โ™‚๏ธ

jade wing
#

This is, thankfully, not rocket science - each channel has a name and a topic that describes what's on topic

spark current
#

wow duoble attack

cunning wolf
#

Attack? ๐Ÿคฃ

spark current
#

dont discriminate because i m noob plz

cunning wolf
#

Rules are rules... and you're being told by a mod now too.

#

You do have choices. You can follow the rules or you can... leave.

spark current
#

we was chatting abou mqtt...after come out my installation is no good...and they suggest me to install H A operating sistem...and i ask about GPIO because to know if can use ...

jade wing
#

And you were told where to ask about that, then got shirty about it

spark current
#

what should i do next time?

jade wing
#

When somebody directs you to a different channel, listen ๐Ÿ˜‰

spark current
#

jump to another tread?...and invite the other to follow me there?

jade wing
#

Just head over, don't invite/tag anybody

#

This is how it works

spark current
#

mmm

#

we have free to speach?

#

i chat with you 4.

jade wing
#

I think you mistake this for a different reality

spark current
#

what you mean?

jade wing
#

The whole free speech thing has nothing to do with forums, Discord, etc ๐Ÿ˜‰

spark current
#

i chat with you 4-5 days ago about sun card..and same you just comment about me...no answer..

#

what the problem..

#

discrimination?

#

mmm

cunning wolf
#

๐Ÿคฃ