hrv231

Members
  • Posts

    52
  • Joined

  • Last visited

Everything posted by hrv231

  1. Hello, I'm still having a problem with the plugin, when the docker compose has a mix of bridge networks and macvlan networks. Docker compose: services: qbit: image: linuxserver/qbittorrent:latest restart: unless-stopped environment: - UMASK=000 - PUID=99 - PGID=100 - TZ=America/Los_Angeles - WEBUI_PORT=8090 - TCP_PORT_6881=6881 - UDP_PORT_6881=6881 ports: - 6881:6881 - 6881:6881/udp - 8090:8090 volumes: - /mnt/user/appdata/qbittorrent:/config:rw,slave - /mnt/user/qb-completed:/completed:rw,slave - /mnt/user/qb-incomplete:/incomplete:rw,slave networks: eth0: ipv4_address: 10.10.30.90 jackett: image: linuxserver/jackett //reduced info network_mode: bridge radarr: image: linuxserver/radarr //reduced info network_mode: bridge depends_on: - qbit - jackett sonarr: image: linuxserver/sonarr //reduced info network_mode: bridge depends_on: - qbit - jackett networks: eth0: external: true name: eth0 This is what the GUI shows: As you can see, the docker that is supposed to have the real ip, is not showing that IP, and for some reason unknown to me, it shows the same IP as one of the dockers from the same "docker compose" Is someone else seeing the same error?
  2. Thank you. So.. you just use it like that?
  3. I didn't name it, it is the one by default when you turn off bridging and binding.
  4. Hello, I just want to check if this is normal in this plugin? I'm running a normal docker compose to test the plugin. Each of my services are running like this, example: graylog: networks: eth0: ipv4_address: 10.10.10.20 networks: eth0: external: true name: eth0 The Docker tab doesn't show the name of my network, instead it shows the id of it. I'm using macvlan, "no bridge" and "no bonding" root@Tower:~# docker network inspect eth0 [ { "Name": "eth0", "Id": "a38b1ae9bf3865b59f1c58c33308a3885528d2d57241ed44fe812caa63aae6d3", "Created": "2023-11-18T17:02:18.576907217-08:00", "Scope": "local", "Driver": "macvlan", "EnableIPv6": false, "IPAM": { "Driver": "default", "Options": {}, "Config": [ {
  5. Thank you @dlandon I removed those packages and had to upgrade from 6.9.2 to 6.11.0 It is a big jump, but the plugin is working now. Now to check all the other plugins...
  6. Hello, Reading the NerdPack thread, users are recommending to put your packages inside /boot/extra and uninstall NerdPack since it is not going to be working on version 6.11. I did this, and put on my /boot/extra the following files: glib2-2.46.2-x86_64-2.txz glibc-2.33-x86_64-5.txz perl-5.34.0-x86_64-1.txz Rebooted and I see that perl was installed and my Auto Fan plugin works fine. The File Activity on the other hand stopped working, giving this error: Sep 25 20:37:47 Tower ool www[4948]: /usr/local/emhttp/plugins/file.activity/scripts/rc.file.activity 'update' Sep 25 20:37:47 Tower file.activity: Stopping File Activity Sep 25 20:37:47 Tower file.activity: File Activity is not running Sep 25 20:37:47 Tower file.activity: Starting File Activity Sep 25 20:37:47 Tower atd[8547]: PAM unable to dlopen(/lib64/security/pam_unix.so): /lib64/libc.so.6: version `GLIBC_2.32' not found (required by /lib64/libpthread.so.0) Sep 25 20:37:47 Tower atd[8547]: PAM adding faulty module: /lib64/security/pam_unix.so Sep 25 20:37:47 Tower kernel: atd[8547]: segfault at 0 ip 000014cb08ca2899 sp 00007fff79fbb5f0 error 4 in libpthread-2.33.so[14cb08ca2000+f000] Sep 25 20:37:47 Tower kernel: Code: 00 48 c7 82 e8 02 00 00 e0 ff ff ff b8 11 01 00 00 66 48 0f 6e c7 66 0f 6c c0 0f 11 82 d8 02 00 00 0f 05 48 8b 05 27 57 01 00 <48> 8b 00 64 48 89 04 25 98 06 00 00 0f b6 05 5c 5a 01 00 64 88 04 Sep 25 20:37:51 Tower ool www[3881]: /usr/local/emhttp/plugins/file.activity/scripts/rc.file.activity 'start' Sep 25 20:37:51 Tower file.activity: Starting File Activity Sep 25 20:37:51 Tower atd[8834]: PAM unable to dlopen(/lib64/security/pam_unix.so): /lib64/libc.so.6: version `GLIBC_2.32' not found (required by /lib64/libpthread.so.0) Sep 25 20:37:51 Tower atd[8834]: PAM adding faulty module: /lib64/security/pam_unix.so Sep 25 20:37:51 Tower kernel: atd[8834]: segfault at 0 ip 000014cb08ca2899 sp 00007fff79fbb5f0 error 4 in libpthread-2.33.so[14cb08ca2000+f000] Sep 25 20:37:51 Tower kernel: Code: 00 48 c7 82 e8 02 00 00 e0 ff ff ff b8 11 01 00 00 66 48 0f 6e c7 66 0f 6c c0 0f 11 82 d8 02 00 00 0f 05 48 8b 05 27 57 01 00 <48> 8b 00 64 48 89 04 25 98 06 00 00 0f b6 05 5c 5a 01 00 64 88 04 Sep 25 20:37:59 Tower emhttpd: cmd: /usr/local/emhttp/plugins/dynamix.plugin.manager/scripts/plugin checkall Sep 25 20:38:00 Tower kernel: vethfc91575: renamed from eth0 Sep 25 20:38:00 Tower kernel: eth0: renamed from vethacb0ddf Sep 25 20:38:22 Tower ool www[4948]: /usr/local/emhttp/plugins/file.activity/scripts/rc.file.activity 'start' Sep 25 20:38:22 Tower file.activity: Starting File Activity Sep 25 20:38:22 Tower atd[10530]: PAM unable to dlopen(/lib64/security/pam_unix.so): /lib64/libc.so.6: version `GLIBC_2.32' not found (required by /lib64/libpthread.so.0) Sep 25 20:38:22 Tower atd[10530]: PAM adding faulty module: /lib64/security/pam_unix.so Can the Author of the plugin make it work with glibc version 2.33, it seems the plugin works with version 2.32, but when I try to put v2.32 on the boot/extra, the GUI never comes up. Please let me know if you need more info from me. I'm still running 6.9.2 Thanks.
  7. Hello, I'm clearing a new USB WD drive with the docker, but in my case I didn't put any "-c #" for more than 1 cycle. I wonder if there is a way after the clear and postread is done, that I can run again the script to do only the preread and postread option, or only preread option but twice, in order to stress-test the drive before shucking it. Unless there is no reason to it? Please let me know. Thanks.
  8. I rearrange the dockers, none of my dockers run their network through another container, generally each docker has its own IP, all dockers on the same network.
  9. @Squid thanks for taking the time. Yes, I do have a user script where I run it every hour to update the libraries, so thank you, I think that was it. What do you think about the first issue, the one where not all the docker starts?
  10. Hello, As the subject says, I have seen this issue several times even before I upgraded from 6.8.3 to 6.9.2, where when I click Start All, dockers tab, not all the dockers start. The good thing is that the dockers who doesn't start are the ones who I generally don't use. I can click over there and manually start them, and they all work fine, it is just strange that not all starts. The other issue I have and it might be related is that as soon as I Start the Array, 2 dockers starts automatically, even though I don't have any of my dockers to "autostart", the weird thing is that these 2 dockers are from the same image, in my case they are PhotoPrism, but I have 2. I don't know what to check on this, the config looks fine for me. Thanks.
  11. I'll prefer to do a mover button and schedule per "cache"
  12. Safe mode shows the same thing related to Parity Tuning. I decided to install it again, and thankfully it shows the error. Unfortunately the System Temp options is something else that is not working.
  13. Correct, that's on the Main tab, I have it too. I was talking about the Dashboard "icon"
  14. [Feature request] Add encrypted icon when the HDD is encrypted Hello, this is not priority, but I noticed that my Unassigned device hdd doesn't show the encrypted icon, like the ones in my array. I know this is not a bug or anything, just cosmetics, but wanted to let you know to see if in the future can be added.
  15. Hello, I'm having some weird problems after migrating to 6.9.2, maybe someone can help me with this. 1.- As soon as I migrated I noticed some weirdness on the Main tab, where the webpage didn't load completely to let me type my hdd luks password; this was at the bottom of the page. After I click start array, then the webpage was able to load completely to let me type the password. The message above didn't stop, even after rebooting the server it keeps appearing, so I decided to uninstall the parity tunning plugin. 2.- System Temp plugin For some reason, after the upgrade, I'm finally able to detect the temps on my motherboard, but the issue is that if I click several times on the Rescan, unraid completely breaks and it requires a hard reset to make it work again. After testing this 3 times, I decided to uninstall the Dynamix System Temps plugin. 😞 Everything was running perfectly on 6.8.3, but for some reason that happened to me. My hardware is: - Gigabyte X570 Aorus Pro Wifi - AMD Ryzen 9 3950X On 6.8.3 I wasn't able to see my cpu and motherboard temps, so I was happy to move to the 6.9.2 for that, and also to be able to use the multi pools on my shares. Right now I could go back, but then I would have to manual configure docker by docker to point them to the unassigned device where they were running on 6.8.3; after moving to 6.9.2 I moved that unassigned device to be a 2nd cache and I had to point the dockers to that new location. Hoping to hear your stories if you have similar hardware. Thank you!
  16. You can't run this https://torsion.org/borgmatic/docs/how-to/run-arbitrary-borg-commands/ in the current version.
  17. Just letting you all know that there is a fork from b3vis that it seems more up-to-date. https://hub.docker.com/r/modem7/borgmatic-docker https://www.modem7.com/books/docker-backup/page/backup-docker-using-borgmatic
  18. Thanks for your time and help, JorgeB !
  19. Thank you JorgeB. I will follow what the link says about the Ryzens and look for that BIOS config. In the meantime, attached are the diagnostics, maybe you could check them and see if something there is not quite right? tower-diagnostics-20210803-0856.zip tower-diagnostics-20210803-0856.zip
  20. Hello, Today unraid has stopped working twice, this happened before with the same version, but it wasn't so frequently as today. I'm having an Intel PCIe card that I pass-through to a PfSense VM that is my router, when I'm doing intensive LAN bandwidth and streaming from my unraid plex to my phone and also browsing unraid files, that's when the problem occurs. After putting an static IP on my laptop and directly connect to my unraid's ethernet, it shows the Dashboard with an uptime of 6 minutes, but the interesting thing is that the unraid system hasn't rebooted. The system looks like when you reboot the server, but it didn't reboot. Now, besides that, of course.. all dockers and VMs are stopped. When I start bringing up the dockers, and try to ping from unraid's command line to any of my dockers IP, the ping doesn't work; YES, I have enabled on the docker settings the option of "Host access to custom networks". To fix this I had to stop the docker service, set the above setting to NO, apply and then set it to YES again, after that I can ping my docker's IPs from unraid's cli. This is very weird. Part of the log: Aug 2 18:38:53 Tower kernel: md5: running, size: 1953514552 blocks Aug 2 18:38:53 Tower kernel: md6: running, size: 3907018532 blocks Aug 2 18:38:53 Tower kernel: md7: running, size: 3907018532 blocks Aug 2 18:38:53 Tower kernel: md8: running, size: 3907018532 blocks Aug 2 18:38:53 Tower kernel: md9: running, size: 7814026532 blocks Aug 2 18:38:53 Tower kernel: md11: running, size: 7814026532 blocks Aug 2 18:38:53 Tower emhttpd: shcmd (32): udevadm settle Aug 2 18:38:55 Tower emhttpd: Opening encrypted volumes... Aug 2 18:38:55 Tower emhttpd: Missing encryption key Aug 2 18:38:55 Tower kernel: mdcmd (45): stop Aug 2 18:38:55 Tower kernel: md3: stopping Aug 2 18:38:55 Tower kernel: md4: stopping Aug 2 18:38:55 Tower kernel: md5: stopping Aug 2 18:38:55 Tower kernel: md6: stopping Aug 2 18:38:55 Tower kernel: md7: stopping Aug 2 18:38:55 Tower kernel: md8: stopping Aug 2 18:38:55 Tower kernel: md9: stopping Aug 2 18:38:55 Tower kernel: md11: stopping Aug 2 18:38:55 Tower emhttpd: shcmd (44): /etc/rc.d/rc.php-fpm start Aug 2 18:38:55 Tower root: Starting php-fpm done Aug 2 18:38:55 Tower emhttpd: shcmd (45): /etc/rc.d/rc.nginx start Aug 2 18:38:55 Tower root: Starting Nginx server daemon... Aug 2 18:39:02 Tower root: nginx: [warn] "ssl_stapling" ignored, host not found in OCSP responder "r3.o.lencr.org" in the certificate "/etc/ssl/certs/unraid_bundle.pem" My hardware is not old, so it might be a kernel problem when working with the PCIe network card, who knows.. X570 Aorus Pro Wifi AMD Ryzen 9 3950X 64GB of RAM I checked "Fix Common problems", and it is showing me the below: Machine Check Events detected on your server Your server has detected hardware errors. You should install mcelog via the NerdPack plugin, post your diagnostics and ask for assistance on the unRaid forums. The output of mcelog (if installed) has been logged If I reboot my unraid, and run again Fix Common problems, the message above won't appear. Again.. the only times when unraid is doing this, is when I'm using plex from my phone and also when I connect directly to my shares and play a movie using VLC on my phone too. I don't want to reboot the server yet, maybe there is a way for me to provide here some logs to find out if this is a bug or not. Thanks.
  21. I didn't noticed that, but it seems that's what happened. Thank you for taking the time with this!!!
  22. Hello, Something weird happened today to my unraid v6.8.3, I plugged a USB to copy its content via krusader docker, and when I open unraid url from my browser, suddenly I see that my black theme disappeared and the banner too. Below are some photos: On the same Dashboard I see these lines: And on the Main tab, my unraid bootable usb suddenly also appeared inside the Unassigned Devices: sdm is the Flash_Disk - 4 GB (sda) [my unraid bootable usb] In the screenshot I didn't include the other usb because at the time of these writing i was done transferring the files from it to my unraid server. Just thought to share these in case the unraid team and forums have more questions or need logs from me before I reboot my system and see if that fixes it. I will wait 2 more days for it. Thanks.