MasterMark

Members
  • Posts

    39
  • Joined

  • Last visited

Everything posted by MasterMark

  1. Hi, I have a very simple python script but if I run it via the user scripts the execution is not in order. subprocess.run running before everything at the start of the script, however it is called later in the script. Do you have idea what is causing this? If I run the script manually in ssh shell it is executing the commands in order. edit: I am not sure right now. Maybe just the output is not in order in the log? The script: #!/usr/bin/python3 import shutil import subprocess print("Starting") letsencryptCert = "/mnt/user/appdata/swag/etc/letsencrypt/live/my.domain/priv-fullchain-bundle.pem" guiCert = "/boot/config/ssl/certs/TOWER_unraid_bundle.pem" print("Copy certificate...") shutil.copyfile(letsencryptCert, guiCert) print("Reload WebGUI...") subprocess.run(["/etc/rc.d/rc.nginx", "reload"]) print("Finished")
  2. 2/5 * * * * Why this custom cron is not working correctly? I would like to run script every 5 minutes, but with an offset. So like 2, 7, 12, 17, 22, etc...
  3. nginx: [emerg] open() "/etc/nginx/accesslist.conf" failed (2: No such file or directory) What the heck? Is something changed? The accesslist file was loaded before. include accesslist.conf; This is where the proxy config loading this.
  4. Hi, About DocPHT, when I am adding a new section to an already published page, the page is not refreshing. If I restart the container then it loads up the new ones as well. Also when I am changing the sections' order, the change is not display until I restart the container. I assume this is something about the internal ngninx configuration, but I can't figure it out. Can someone please take a look? Thanks, Mark
  5. Hi, On the Dashboard the Streams counter stays zero on cache only shares even when there is an active stream. Can this be fixed? The streams counters would be a good indicator when someone using the server. Thanks, Mark
  6. Yeah this is what I figured out myself as well. This is why I am trying this with iSCSI. I know It takes half a day with one stream, I already copied once the whole HDD. But I wanted to solve this. Not really for the real world problem, but as a proof of concept. It hard to accept that I am copying between my servers with 900 mbps however four times bandwith should be possible with my setup. Do you have any tutorial for iSCSI multipath? Thanks
  7. I am sorry I forgot to mention I have LACP bonding on the 4 NIC on both my servers. Yep, I am mounting the HDD on the main server with iSCSI that is not a problem. If I had more sata I did not placed the old HDD on the other server anyway. Yes, I set up the samba extras config for smb multipath. But didn’t work. Maybe on linux the LACP bonding is the issue, because smb multipath on linux expects multiple IP addresses, but with bonding, the whole group has 1 IP address. Thanks
  8. I have two Unraid servers with 4x1 Gigabit NIC. Right now I am migrating to new HDDs as unassigned device. I tried ZFS but that was a complete failure. Very slow in my case (SMR hdd-s). I already copied all my files back to the ZFS pool, but I want to destroy the pool and take a different approach (possible lvm on two hdds, xfs partition as a cache pool). I have no sata in the main server to aditional HDDs, so I fired up my old server and placed the old HDD there. I copied back the new files there. But when I destroy the ZFS pool ans create the cache pool, I have to copy back the files again. About 4 TB. I tried SMB mulitpath, but not working, the connection maxed out at ~900mbps. I thought iSCSI knows the multipath mode “as is”. tl;dr: I want to moves files between two Unraid servers quickly.
  9. Hey, Is it possible to set up multipath with iSCSI?
  10. Hi, I am trying to connect to another Unraid server where is set up the iSCSI Target plugin. I'm getting this error: Apr 16 09:56:38 SERVER kernel: scsi host12: iSCSI Initiator over TCP/IP Apr 16 09:56:38 SERVER kernel: connection7:0: detected conn error (1020) Apr 16 09:56:38 SERVER iscsid: conn 0 login rejected: initiator failed authorization with target Apr 16 09:56:38 SERVER iscsid: Connection7:0 to [target: iqn.2003-01.org.linux-iscsi......, portal: xxx.xxx.xxx.xxx,3260] through [iface: default] is shutdown. Any idea? What authorization did this mean? Never mind. I needed to add the initiator at the target.
  11. Hi, Thank you for your awesome work. This plugin is very great. One notice: could the plugin please respect the coloring and the alignment of the Main page? At least roughly like the Unassigned Devices plugin. Thanks, Mark
  12. Hey, Is it possible for active streams to show all SMB usage? As i can see it is limited to /mnt/user, but i have symlinks there and those ones are excluded. Is there a filter config for this? Thanks, Mark
  13. Please please please could you add an option to replace the Dashboard widget from the Hardware section to the Disk array section on the right side? This is bothering my OCD. Thanks
  14. Here are some TOP screenshots: The Web GUI not loading, or when loading the content not showing. (The API not responding.) I even tried to run a different Web GUI: Vuetorrent. I'm running it in NGINX. In that case the webpage is loaded but there is no or slow connection to the docker qbittorrent API. What can I do with this?
  15. Hi, Is there a way to prioritize the webUI inside the docker container? When I start a downloading and it gets really fast the webUI struggling to load the content. Buttons don't working, etc. Thanks, Mark
  16. From the last update 6.9.1 change log: dhcpcd: ipv6: use slaac hwaddr instead of slaac private webgui: Network: fix privacy extensions not set Might be what we are looking for.
  17. would you mind to share it please? i am struggeling with this too. i tried to set up the EUI-64 style IPv6 suffix but couldn't do it.
  18. I think you have to put this into the config/go file. Is it changing every time? Because one change is okay it will change back to the normal address from the temp address.
  19. sysctl -w net.ipv6.conf.all.use_tempaddr=0 sysctl -w net.ipv6.conf.default.use_tempaddr=0
  20. It is not working that way. The tunnel isn't establishing.
  21. Hmm, well this should work. Thanks, I am going to try this. edit: Unless it will broke the QR-code and file, because this will contain the original port.
  22. No. I want to bypass firewall on the client side. Like when you connect a public wifi, and their firewall only allow specific ports. Like only 53/udp, 80/tcp and 443/tcp, It is a common strategy for VPN to put the service on these ports to bypass this "fool" firewalls without DPI. I got the idea from aptalca:
  23. I'm trying to bypass firewalls. I am not hosting DNS service on Unraid neither on my router (to the WAN side). It should not conflicts with anything. How wireguard bind to a port? Can I set to bind to specific ip-address:port? Or can I disable somehow the dnsmasq service?