-
[SUPPORT] NetBird
Ok I have installed the docker netbird client container and was not able to ping the unraid host on the 100.x.x.x address. I had to use the following script to make this work with network type host. #!/bin/bash # netbird-iptables-all.sh - Allow ALL traffic on wt0 (Netbird) for Unraid if ! ip link show wt0 >/dev/null 2>&1; then echo "Error: wt0 not found. Start Netbird first." exit 1 fi # Full ACCEPT for all protocols/ports on wt0 iptables -I INPUT 1 -i wt0 -j ACCEPT && echo "INPUT -i wt0 ALL" iptables -I OUTPUT 1 -o wt0 -j ACCEPT && echo "OUTPUT -o wt0 ALL" iptables -I FORWARD 1 -i wt0 -j ACCEPT && echo "FORWARD -i wt0 ALL" iptables -I FORWARD 1 -o wt0 -j ACCEPT && echo "FORWARD -o wt0 ALL" # Extra for Docker/NAT if needed iptables -t nat -I POSTROUTING 1 -s 100.64.0.0/10 -o br0 -j MASQUERADE #iptables-save > /boot/config/iptables.conf echo "All wt0 traffic allowed. Test: http://[Unraid Netbird IP] from Android" echo "Netbird IP: $(ip addr show wt0 | grep 'inet ' | awk '{print $2}' | cut -d/ -f1)"
-
-
[Support] Borgitory - Web-based Borg Scheduling
Cool, thanks, this works. Now I can use the remotes share from unraid. Now exploring the application ;-)
-
[Support] Borgitory - Web-based Borg Scheduling
Using latest version 2.4.3 of borgitory. I tried to mount /mnt/remotes/192.168.1.105_share11/borgbackup/ to /mnt/repos. I also tried /mnt/remotes/192.168.1.105_share11 to /mnt/repos or even /mnt/remotes/ to /mnt/repos. The scan logic does not pick up any of the repos. Is there a way I can manually add one or more directories/repos? I have the feeling it scans for ages and it does not find anything. Thanks
-
Graylog - problem with installation / running
Thanks used the compose file from there. Came up finally with those paths and compose file: # For DataNode setup, graylog starts with a preflight UI, this is a change from just using OpenSearch/Elasticsearch. # Please take a look at the README at the top of this repo or the regular docs for more info. services: # MongoDB: https://hub.docker.com/_/mongo/ mongodb: image: "mongo:6.0" restart: "on-failure" networks: - graylog volumes: - "/mnt/user/appdata/graymongo/mongodb_data:/data/db" - "/mnt/user/appdata/graymongo/mongodb_config:/data/configdb" # For DataNode setup, graylog starts with a preflight UI, this is a change from just using OpenSearch/Elasticsearch. # Please take a look at the README at the top of this repo or the regular docs for more info. # Graylog Data Node: https://hub.docker.com/r/graylog/graylog-datanode datanode: image: "${DATANODE_IMAGE:-graylog/graylog-datanode:6.1}" hostname: "datanode" environment: GRAYLOG_DATANODE_NODE_ID_FILE: "/var/lib/graylog-datanode/node-id" # GRAYLOG_DATANODE_PASSWORD_SECRET and GRAYLOG_PASSWORD_SECRET MUST be the same value GRAYLOG_DATANODE_PASSWORD_SECRET: "${GRAYLOG_PASSWORD_SECRET:?Please configure GRAYLOG_PASSWORD_SECRET in the .env file}" GRAYLOG_DATANODE_MONGODB_URI: "mongodb://mongodb:27017/graylog" ulimits: memlock: hard: -1 soft: -1 nofile: soft: 65536 hard: 65536 ports: - "8999:8999/tcp" # DataNode API - "9200:9200/tcp" - "9300:9300/tcp" networks: - graylog volumes: - "/mnt/user/appdata/graylog/graylog-datanode:/var/lib/graylog-datanode" restart: "on-failure" # Graylog: https://hub.docker.com/r/graylog/graylog-enterprise graylog: hostname: "server" image: "${GRAYLOG_IMAGE:-graylog/graylog:6.1}" depends_on: mongodb: condition: "service_started" datanode: condition: "service_started" entrypoint: "/usr/bin/tini -- /docker-entrypoint.sh" environment: GRAYLOG_NODE_ID_FILE: "/usr/share/graylog/data/data/node-id" # GRAYLOG_DATANODE_PASSWORD_SECRET and GRAYLOG_PASSWORD_SECRET MUST be the same value GRAYLOG_PASSWORD_SECRET: "${GRAYLOG_PASSWORD_SECRET:?Please configure GRAYLOG_PASSWORD_SECRET in the .env file}" GRAYLOG_ROOT_PASSWORD_SHA2: "${GRAYLOG_ROOT_PASSWORD_SHA2:?Please configure GRAYLOG_ROOT_PASSWORD_SHA2 in the .env file}" GRAYLOG_HTTP_BIND_ADDRESS: "0.0.0.0:9000" GRAYLOG_HTTP_EXTERNAL_URI: "http://localhost:9000/" GRAYLOG_MONGODB_URI: "mongodb://mongodb:27017/graylog" ports: - "5044:5044/tcp" # Beats - "5140:5140/udp" # Syslog - "5140:5140/tcp" # Syslog - "5555:5555/tcp" # RAW TCP - "5555:5555/udp" # RAW UDP - "9009:9000/tcp" # Server API - "12201:12201/tcp" # GELF TCP - "12201:12201/udp" # GELF UDP #- "10000:10000/tcp" # Custom TCP port #- "10000:10000/udp" # Custom UDP port - "13301:13301/tcp" # Forwarder data - "13302:13302/tcp" # Forwarder config networks: - graylog volumes: - "/mnt/user/appdata/graylog/graylog_data:/usr/share/graylog/data/data" restart: "on-failure" networks: graylog: driver: "bridge" volumes: mongodb_data: mongodb_config: graylog-datanode: graylog_data:
-
VM Backup Plugin
I had troubles with the plugin on unraid Version 6.12.14 2024-11-26. In the tab upload scripts I was not able to save any script, it was forever loading when hitting the button save pre-script. I found the following workaround. 1) make sure you create a new config in the gui and not use the default one e.g. homeassistant 2) create a new script named pre-script.sh in the following folder and put your content in there: /boot/config/plugins/vmbackup/configs/homeassistant 3) edit the following file: /boot/config/plugins/vmbackup/configs/homeassistant/user.cfg add 2 new lines: pre_script="pre-script.sh" pre_timeout="300" e.g. pre-script.sh: #!/bin/bash out=/mnt/user/backup/logs/pre-script.log echo $(date) >> $out echo stopping HomeAssistant_inabox >> $out docker stop HomeAssistant_inabox
-
Upgrade from 6.9.2 -> 6.10.RC4 USB in VM problem
Hi, I just came here to say thank god for this thread. It was driving me mad that the conbee ii stick was usable in the container but not in the VM of home assistant. I am currently on Unraid Version 6.12.14, I just installed the CA app HomeAssistant_inabox from spaceinvaderone, installed the USB management plugin. Then deactivated my conbee ii USB Stick in the VM settings of the virtual machine, then I clicked on the conbee ii entry in the USB menu of unraid named device settings and used the following toggles: After that I used the integration https://www.home-assistant.io/integrations/zha and it automatically found the conbee ii stick, found the lights etc. Thanks everyone.
-
[Support] deCONZ Community Official
Ok I really have no idea why, but it works if you try to access the web interface via the name of the unraid server. e.g. http://tower.lan:1234/ instead of 192.168.1.107:1234. To be more precise, some web pages apparently work with IP address, some work only with domain name
-
[Support] deCONZ Community Official
HI all, I want to chip in. The docker image only works for me with network type BR0, however I need bridge oder host in order to communicate with the rest of the network. When using bridge it is all empty and not reachable via the port I defined in the settings, see screenshot. If I use network type host, the ports defined are also not honored, since port 80 and 443 are already used by something else, and I cannot access the web gui on the specified port, e.g. instead of port 80, I defined port 1234. However I can access the VNC port in network type host. Any ideas? Thanks
-
[Support] Clowrym's Docker Repository
Heads up for Transmission_VPN: Unraid OS Version: 6.12.4 Transmission Docker: haugene/transmission-openvpn:5.1.0 VPN: Privado I had to add the following docker variable in order to get access the web gui, as described here: https://github.com/haugene/docker-transmission-openvpn/issues/1725 OVERRIDE_DNS:1.1.1.1
-
Help whit Kavita app
Check the description of how the scanner of kavita expects that the library is set up on the kavita wiki. I use it for magazines as well and had to define d-m-y in each filename in order that the scanner groups it together in the way I want. You can also create a PR on github for your use case I guess.
-
Hardware Setup für NAS, Vieles in Docker, bisserl VM
Der kommt auch gleich auf 40 USD. Da kann ich dann doch das Amazon Teil nehmen, das R44SF, hoffe mal das ist auch passend und ich muss nicht zu viel sägen.
-
Hardware Setup für NAS, Vieles in Docker, bisserl VM
Ok also ich habe jetzt verstanden, dass ich für den 1. NVME Slot schon eine Kabelverlängerung benötige. Ist diese hier die richtige? https://amzn.eu/d/9chl2xs Um dann die Samsung MZ-V7S1T0BW SSD 970 EVO Plus 1 TB M.2 Internal NVMe SSD (up to 3.500 MB/s) anzuschließen? https://amzn.eu/d/i70CRAW Und RAM nehme ich auch doch einen Kingston Server Premier 32GB 2666MT/s DDR4 ECC CL19 DIMM 2Rx8 Server Memory Micron F - KSM26ED8/32MF, weil dieser auf der Kingston Seite in Verbindung mit dem Motherboard empfohlen wird. https://amzn.eu/d/htJ8W3I
-
Hardware Setup für NAS, Vieles in Docker, bisserl VM
Danke für die Hilfestellung. Ich habe die Platte für Parity nochmal auf 3TB beschränkt, spätere größere Platten benötigen dann eh auch eine größere Parity Platte. Inzwischen langen dann mal die 6TB (2x3TB) des Arrays. Den Link zum Motherboard habe ich aktualisiert, ist der größte Kostenblock, aber so ist es. CPU gebraucht habe ich auch nochmal gefunden, sollte also auch passen. Für die m.2 Verlängerung muss ich noch kurz recherchieren, würde erst schlagend werden, wenn ich es dann wirklich brauche. Inspiriert durch den Thread über günstige SSDs/HDDs checke ich nochmal ob es eine SSD Samsung 980 Pro oder Evo Plus oder Vorgängermodell sein muss.
-
Server Upgrade in Planung
Ggf. überlegst du dir einen Amazon Stick oder anderen zu nehmen, da gabs gerade gute Preise und dort die Client App zu installieren. Dann bist du vom App Store unabhängig.
-
Hardware Setup für NAS, Vieles in Docker, bisserl VM
Hallo zusammen, Nach längerer Recherche aus dem Unraid Forum und etlichen anderen Hardware Seiten freue ich mich über Euren Input zu folgendem Setup. Ziel und Einsatzzweck: Normale NAS Funktionalität Backup für 3-4 Smartphones (Android, Apple) Einiges/vieles in Docker Containern 1-2 Streams Transcoding (Plex, Emby, Jellyfin) 1-2 VMs zum Testen, ausprobieren, Surfen, Entwicklungsumgebung Budget: ca. 500 EUR < 800 EUR Apps Liste: *ARR Stack, Medusa + SAB Transmission mit VPN JDownloader Gotify Bitwarden Photo Backup, Photo Management (Ersatz für Photos von Synology) File Backup Android, Download (Ersatz für Drive, Filestation von Synology) Docker/VM? Home Assistant (Ersatz für Raspberry 3 Home Assistant) Kavita Und sicher noch min.d 5-10 andere Docker Themen, an die ich noch nicht gedacht habe Motherboard Asrock Rack C246 WSI 270 EUR zu kaufen hier Begründung: weil ITX, Intel 1151v2, 1x M.2, 8x SATA, ECC (gemäß Übersicht von hier). Eines der einzigen verfügbaren Boards, das die CPU unterstützt und ECC hat. Fragestellung: Lt. Beschreibung hat es 1x PCIe 3.0 x16, 1x M.2/M-Key (PCIe 3.0 x4/SATA, 2242), könnte ich da eine 2. NVME auch über PIC Karte einsetzen, später mal? CPU Intel Core i3-9100 119 EUR Begründung: weil ECC, Quicksync, GVT-g Gebraucht via Ebay etc. ca. 50 EUR RAM 32 GB M391A4G43MB1-CTDQ (unbuffered DIMM ECC) 120 EUR () Begründung: weil 32GB und 2666 Takt, kompatibel gemäß Datenblatt NVME (Cache Pool): Samsung SSD 980 PRO 2TB, M.2 127 EUR () Begründung: weil gute Performance, Langlebigkeit, von vielen im Unraid Forum empfohlen Fragestellung: Ggf. langt eine 1TB Version genauso? Wie hier beschrieben würde ich tourlich die wichtigen Daten von Docker täglich auf die Platten spiegeln, da ich keinen zweiten NVME Slot habe. HDDs (Array) Daten: Vorerst 2 x 3TB WD RED Altbestand (aus Synology ds216play) für Daten Parity: 1 x 3TB Seagate CMR 77 EUR Gehäuse Fractal Design Node 304 schwarz, Mini-DTX/Mini-ITX 80 EUR Begründung: aus dem Unraid Forum für Mini-ITX empfohlen Netzteil be quiet! Pure Power 11 FM 550W ATX 2.52 80 EUR Begründung: aus dem Unraid Forum empfohlen Fragestellung: das langt hoffentlich? Fazit Sind in Summe doch eher Richtung 900 EUR😉 Was sagt ihr dazu? Danke
mastervol
Members
-
Joined
-
Last visited