
ZataH
Members-
Posts
164 -
Joined
-
Last visited
Converted
-
Gender
Male
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
ZataH's Achievements
Apprentice (3/14)
10
Reputation
-
ZataH started following [Support] Linuxserver.io - The-Lounge , fortytwo - unRAID X399 build , [Plugin] Network Stats and 5 others
-
"webgui: improve: Highlight selected row when hovering over array or shares" - Can we please get an option to disable this? It´s really annoying
-
Do you know when 6.11 is expected to go into RC ?
-
Yes looks like this
-
Thank you for clarification. For some reason I can´t click on auto anymore. You know why? I have Pfsense, but I have added: server: private-domain: "unraid.net"
-
I have checked the posts, and it was mentioned in one, but not quite why mine is not working. So I have been importing my own LE cert to /boot/config/ssl/certs/servername_unraid_bundle.pem, but as of 6.10 it is not working anymore. I can see that everytime I restart nginx, it automatically re-creates a self-signed. I am not interested in using the "Auto" mode and using the hash.unraid.net. I just want to access the server on my own DNS with my own certificate. How can I make this work again? /etc/rc.d/rc.nginx restart Checking configuration for correct syntax and then trying to open files referenced in configuration... nginx: the configuration file /etc/nginx/nginx.conf syntax is ok nginx: configuration file /etc/nginx/nginx.conf test is successful Shutdown Nginx gracefully... Regenerating private key and certificate... Starting Nginx server daemon... I also tried to import it as: /boot/config/ssl/certs/certificate_bundle.pem And I can see it under Management access, but Unraid still uses the self signed cert.
-
I have a X9SRi-F with E5-2670 v2 with no issues. I am on ipmi 3.19 and bios 3.2a
-
Thanks. Working now And thank you for this plugin. It is a godsend when you have a lot of containers
-
I have an issue, when I create the folder, and sort containers by name. The folder does not open anymore
-
I might be wrong, but I am pretty sure it wasnt always like this. Maybe I just didnt notice earlier, dont know.
-
Not sure when this started. When I change permission or settings on any share, smbd is restarting and all clients loose connection for a few seconds. Did something change or do I have a weird setting I dont know about?
-
Any way to import SSL certificate with this container?
-
ehm why do you have nvme drivers in your array? and why is your cache raid0? I would toss a parity drive in there if I were you. I know you said you have backup, but still
-
Any plans to integrate this with VPN?
-
I am not sure what I am doing wrong here. I followed the guide on how to set it up with pfsense. Tried several VMs, and none of them can PXE boot. They get ip from my router and all that.
-
Figured it out In case anyone wants it VM-Shutdown: #!/bin/bash #Empty vm list echo "" > /tmp/vms-running.txt #Get all running vms except backup server for VM in $(virsh list --state-running --name); do if [[ ! "$VM" == "VM-TO-NOT-SHUTDOWN" ]] ; then virsh shutdown "$VM" #Write running vms to list echo "$VM" >> /tmp/vms-running.txt fi done /usr/local/emhttp/webGui/scripts/notify -i normal -s "Veeam started - VMs shutdown" VM-Start: #!/bin/bash #Get all running vms except backup server for VM in $(cat /tmp/vms-running.txt); do virsh start "$VM" done /usr/local/emhttp/webGui/scripts/notify -i normal -s "Veeam done - VMs started"