spyd4r

Members
  • Posts

    55
  • Joined

  • Last visited

Everything posted by spyd4r

  1. oh a standard docker install you can just place the following in /etc/docker/daemon.json to export metrics (unfortunately this just gives you a count of containers and not container details), not sure how to accomplish this on unraid though. { "metrics-addr" : "127.0.0.1:9323" }
  2. Is it possible to have Prometheus Node Exporter send metrics for docker information as well? what containers are running, status, etc..?
  3. Appears to be an issue with the old version of unifi-poller in golift/unifi-poller (last updated 2 years ago), solution is to upgrade to v2.7.x https://github.com/unpoller/unpoller/issues/575 https://github.com/unpoller/unpoller/issues/582 Think it works if you just update the Repository field to ghcr.io/unpoller/unpoller
  4. is there a way to support multiple pi-hole instances?
  5. I was having issues with about 3 containers that would never go out of "not available". This did the trick.. thanks!
  6. So after the last influxdb container update, I lost a bunch of databases and users I had created recently. Does anyone know why that may have happened?
  7. I can see my usb device in unraid with lsusb, but i'm not seeing it in the docker config under /dev/bus/usb/001/ or any other locations under /dev/ anyone else seeing anything similar?
  8. I'm a bit confused, how do I modify the config file to enable plugins? is it possible to monitor docker on the unraid system?
  9. issue with grafana here, won't start. tried fixing permissions.
  10. I'm on 6.9.2 and I'm seeing this issue as well and it's driving me nuts, every day my home assistant docker seems to add this random unused variable that prevents it from restarting on an update, some days I'll have like 10 of these same additional variables. attached below you see the /path/to/device.
  11. Is it possible to update the telegraf container so it supports URL based telegraf configurations from InfluxDB2.0?
  12. looks like there is a change, and retention period must now be a multiple of the index period. so 168h * 4 = 672h
  13. yes I did, but i just realized I made the user localhost only. doh, sorry for the false alarm. Thanks
  14. yes i did.. user, password, host and port set. also mysql (mariadb)
  15. I set DB_HOST yet it keeps defaulting to localhost. Same in latest and beta. Could not poll the database: SQLSTATE[HY000] [1045] Access denied for user 'firefly'@'Firefly-III.br0' (using password: YES) (SQL: select `id`, `name`, `data` from `configuration` where `name` = is_demo_site and `configuration`.`deleted_at` is null limit 1)
  16. ssh authorized_keys file management from within the WebUI
  17. I'm seeing the same issue as well, this really feels like something that should just be baked into Unraid itself and configurable via the web GUI.
  18. Is anyone able to get a VM running on unraid able to talk to netboot.xyz? I have it all setup as documented in my Unifi configuration, I just get no pxe boot from a VM. edit: pxe boot happened once, and it's gone again.. it's like I am not getting the DHCP request. edit 2: I figured it out, with Unifi USG, I had to add the following dhcp options NAME: code_93 CODE: 93 TYPE: Unsigned integer 16
  19. Exactly. Just stay on stable and wait for official releases then.
  20. I'll show you my matrix.subdomain.conf file server { listen 443 ssl; listen 8448 ssl; server_name bridge.*; include /config/nginx/ssl.conf; client_max_body_size 0; location / { include /config/nginx/proxy.conf; resolver 127.0.0.11 valid=30s; set $upstream_app 10.10.4.234; set $upstream_port 8008; set $upstream_proto http; proxy_pass $upstream_proto://$upstream_app:$upstream_port; proxy_set_header X-Forwarded-For $remote_addr; } location ^~ /_matrix { proxy_pass http://10.10.4.234:8008/_matrix; } location ^~ /_matrix/identity { proxy_pass http://10.10.4.234:8008/_matrix/identity; proxy_set_header Host $host; proxy_set_header X-Forwarded-For $remote_addr; } } While we're at it, in regards to your port forwards on your router, how do you have it configured? Are you using cloudflare also? I noticed a few things needed in regards to configuring DNS at cloudflare for federation to work properly. also, in regards to turnserver.conf. I think you added pidfile=/data/turnserver.pid userdb=/data/turnserver.db did you also add the no-cli?
  21. 1 thing i see right off the bat.. database: name: sqlite3 args: database: /homeserver.db should be database: name: sqlite3 args: database: /data/homeserver.db other then that the only differences between yours and mine is the listeners, I have mine setup a bit diferently. listeners: # TLS-enabled listener: for when matrix traffic is sent directly to synapse. # # Disabled by default. To enable it, uncomment the following. (Note that you # will also need to give Synapse a TLS key and certificate: see the TLS section # below.) # - port: 8448 tls: false type: http x_forwarded: false bind_addresses: ['0.0.0.0'] resources: - names: [federation] compress: false # Unsecure HTTP listener: for when matrix traffic passes through a reverse proxy # that unwraps TLS. # # If you plan to use a reverse proxy, please see # https://github.com/matrix-org/synapse/blob/master/docs/reverse_proxy.md. # - port: 8008 tls: false type: http x_forwarded: true bind_addresses: ['0.0.0.0'] resources: - names: [client] compress: true - names: [federation] compress: false Can you paste your turnserver.conf? (remove the secret)
  22. if you want to send your conf file for matrix privately to me or paste here and make sure you remove anything sensitive. perhaps we can give you a hand.
  23. I got a locally run dimension server up and running, noticed that was still in your todo. Let me know if you need assitance putting that together.