Zotarios

Members
  • Posts

    59
  • Joined

  • Last visited

Posts posted by Zotarios

  1. I could boot into safe mode, but then I needed to boot in normal mode for server normal operation.

    There is still this command in the syslog which is issued every minute all day:

    "flash_backup: adding task: /usr/local..."

    I don't think this is at fault for the server unresponsiveness, yet it's kinda annoying. I deactivated the flash backup with myunraid plugin as it was it that was filling my syslog.

    Furthermore, I'm not logging into the GUI with a browser, just checking the logs via SAMBA.

  2. Tonight at 1AM approx became unresponsive again and this morning it was up and running, it didn't reboot or nothing.

    I could connect to the WireGuard tunnel but dockers, SSH nor webgui were working

    I see a lot of:

    Feb 10 23:54:27 Zotarios flash_backup: adding task: /usr/local/emhttp/plugins/dynamix.my.servers/scripts/UpdateFlashBackup update

    On my syslog log, but I don't know if this is the cause of the crash…

    syslog-10.10.10.100.log zotarios-diagnostics-20240219-1325.zip

  3. Hello! I would like to know if this GUID is blacklisted as I requested a replacement for it, but at the end the drive wasn't faulty, it was the GPU.

     

    GUID: 090C-1000-0347-920120016715

     

    If it is, I would like to ask for a second replacement (as I took a spared usb waiting for a new one).

  4. 1 minute ago, ich777 said:

    Please uninstall the Nvidia Driver and also check if it is in the Plugins section in the Plugin Errors tab if it is then remove it, reboot, install the Nvidia Driver plugin from the CA App and reboot again.

     

    I wouldn't know how to do so, because the webui is not responsible. Maybe I can try to boot the server with the gui image?

     

    2 minutes ago, ich777 said:

    Next time please include Diagnostics

    Same problem... how could I get them?

  5. Hello there!

     

    My flash drive died and I had to use one that I had spared at home. After flashing the backup stored on myunraid, I encountered a boot error displaying the following message:

     

    1648037920_ImatgedeWhatsApp2024-02-05ales17_35.53_25208a26.jpg.8c7cbbb366529acf45899aff5b024e4b.thumb.jpg.ea75f7b2a2dffd3fb4bfd8d7304d8fa5.jpg

     

    No changes at the server had been done since the backup and the drive fail and all the plugins/dockers are up to date.

     

    Additionally, I observed a discrepancy in backup sizes. The myunraid backup was approximately 0.5GB, while a personal backup I created a month ago is around 1GB. I am considering trying the larger backup to see if it resolves the issue.

  6. I've been encountering an issue with my Unraid server that occurs approximately every other month.

    The problem manifests as follows: While I can still establish a connection via Wireguard, the WebGUI becomes unreachable, SSH connections time out, and all my Docker containers become inaccessible. The only recourse I have is to manually press the shutdown button on the server's case, wait for it to power down, and then restart it.

    I've searched through the syslog for any relevant information but haven't found anything of significance.

    I would greatly appreciate any tips that could help resolve this recurring issue.

    Furthermore, I am attaching the system diagnostics, but I think it only has info since the last boot?

     

    This is the syslog:

    Quote

    Feb  4 18:00:02 Zotarios root: Forcing turbo write on

    Feb  4 18:00:02 Zotarios kernel: mdcmd (414): set md_write_method 1

    Feb  4 18:00:02 Zotarios kernel:

    Feb  4 18:00:02 Zotarios root: ionice -c 2 -n 7 nice -n 19 /usr/local/emhttp/plugins/ca.mover.tuning/age_mover start 0 0 0 '' '' '' '' '' '' '' '' 75

    Feb  4 18:00:02 Zotarios root: Restoring original turbo write mode

    Feb  4 18:00:02 Zotarios kernel: mdcmd (415): set md_write_method 1

    Feb  4 18:00:02 Zotarios kernel:

    Feb  4 18:40:48 Zotarios flash_backup: adding task: /usr/local/emhttp/plugins/dynamix.my.servers/scripts/UpdateFlashBackup update

    Feb  4 18:41:00 Zotarios monitor: Stop running nchan processes

    Feb  4 20:58:15 Zotarios init: Switching to runlevel: 0

    Feb  4 20:58:15 Zotarios shutdown[16421]: shutting down for system halt

    Feb  4 20:58:18 Zotarios flash_backup: stop watching for file changes

    Feb  4 20:58:19 Zotarios init: Trying to re-exec init

    Feb  4 20:59:26 Zotarios sshd[16356]: Connection from 10.10.100.3 port 49979 on 10.10.10.100 port 22 rdomain ""

    Feb  4 20:59:36 Zotarios vnstatd[6636]: Warning: Writing cached data to database took 276.1 seconds.

    Feb  4 20:59:37 Zotarios kernel: mdcmd (416): nocheck cancel

    Feb  4 20:59:38 Zotarios emhttpd: Spinning up all drives...

    zotarios-diagnostics-20240204-2110.zip

  7. On 8/4/2020 at 12:46 PM, cleggypdc said:

    Thanks for the help in this post, works fantastically. TL;DR of original, here's a step by step guide for creating a mount on VM creation (as of unraid 6.8.3).

    1. In the "Unraid Share" section, select the unraid folder that you want to make mountable. This can be an individual share or a parent directory of the share for multiple. e.g `/mnt/user`
    2. In the "Unraid Mount tag" section, enter a tag name, this can be anything and will be passed to the VM. e.g `myMountTag`
    3. Complete VM setup, power on and install your VM OS or normal. The following steps require root/sudo user.
    4. Make a backup copy of fstab in case you mess up your configuration `sudo cp /etc/fstab /etc/fstab.orig` 
    5. Create a target mount directory where you want to mount your share e.g. `sudo mkdir /path/to/myMountedDir`
    6. Edit `/etc/fstab` config by adding the following line to the end of the file, (change tag & path to your needs)
    7. `myMountTag    /path/to/myMountedDir    9p    trans=virtio,version=9p2000.L,_netdev,rw    0    0`
    8. Save fstab file and run `sudo mount -a` to check your mount works (there should be no output for on success)
    9. You should now have a mounted share in your VM

    Futher detail

    For anyone new to unraid, looking for an explanation as to what the fstab values are, here is an explanation

    
    <device>: myMountTag
    <mount point>: /path/to/myMountedDir  
    <file system type>: 9P (The protocol that QEMU uses for a VirtFS)
    <options>: 
        trans=virtio,version=9p2000.L (our transport for this share will be over virtio, and we specify the 9P version (2000.L) because the default for QEMU is 2000.U. "L" has better support for ACLs, file locking and more efficient directory listing, deletion edge cases etc)
        _netdev (tells the system that this mount relies on the network, and to delay the mount until a network is enabled)
        rw (mount as read/write)
    <dump>: 0 (disables backup via the dump command)
    <pass num>: 0 (disable any error checking)

     

    Cheers!

    Is it normal that following this guide it asks me root permissions to delete or create files?

     

  8. 5 hours ago, dangitzin said:

    unraidnordvpn.PNG.8aab8d018bf6d5be7253c6627e3dc235.PNG

    image.png.01eee8a35d0fde123c66dc3243aa229a.png

    It's enabled via iptables (https://github.com/bubuntux/nordvpn/blob/master/start_vpn.sh) but you can still enable it via nordvpn deamon (https://github.com/bubuntux/nordvpn/blob/0477965d5c1160a76a48844b43378e558656f23e/start_vpn.sh#L148). I didn't check the code enough to tell you if that would be better...

     

    5 hours ago, dangitzin said:

    I happened to check the log because my downloads/uploads speeds were dropping until it hit 0 but I guess it was the container acquiring a new ip.

    It should not happen. The docker checks if you are protected and if not, reload the deamon (get a new server).

  9. 2 hours ago, bonsaibobby said:

    When editing the container there was an issue with the old container not being removed. I turned docker service off and on again and reset the container. It worked from there. Is there some way of auto-enabling a killswitch?

    Edit: Also how do I set containers to be routed through this one?

    Killswitch is enabled by default. You can disable it adding another variable, but I did not include it (feel free to do so if needed).

     

    Updated the template adding a @SpaceInvaderOne (if that's ok with him) guide on how to route other docker through this one (here's the link: https://www.youtube.com/watch?v=znSu_FuKFW0)

  10. 8 hours ago, bonsaibobby said:

    My container stalls in starting and shows no logs. I pretty much kept the template on default with my login credentials and network set to bridge. Have you been able to get this to work yourself yet? I appreciate the work BTW, I've been trying to get this bubuntux container to work for over a year. 

    Try adding this Variable and post the logs (REMEMBER TO REMOVE YOUR CREDENTIALS)

    image.png.4ec77c3f649e01c5ef6d2c16b4f43464.png

  11. 5 hours ago, dangitzin said:

    cool the nordvpn container itself is working and running through a vpn. how do i get containers like torrent clients & sonarr to work? i tried the --net=container:nordvpn but still can't load up web ui

     

    figured it out. had to edit nordvpn contain show advanced view then add the ports for each other container. then tick "Required: Yes"

    You got this! I think I will edit the template with some guide-lines so everyone can figure it out. Thanks!

  12. Is anyone reverse proxying whoogle with NginxProxyManger? I can hit the domain but the site is blank.

    Console gives me this errors:

    Loading failed for the <script> with source “https://ajax.cloudflare.com/cdn-cgi/scripts/8g5r2512/cloudflare-static/rocket-loader.min.js”. search.domain.com:1229:1
    Loading failed for the <script> with source “https://static.cloudflareinsights.com/beacon.min.js”. search.domain.com:1229:1
    Cookie “session” will be soon rejected because it has the “SameSite” attribute set to “None” or an invalid value, without the “secure” attribute. To know more about the “SameSite“ attribute, read https://developer.mozilla.org/docs/Web/HTTP/Headers/Set-Cookie/SameSite search.domain.com
    Content Security Policy: The page’s settings blocked the loading of a resource at https://ajax.cloudflare.com/cdn-cgi/scripts/8g5r2512/cloudflare-static/rocket-loader.min.js (“script-src”).
    Content Security Policy: The page’s settings blocked the loading of a resource at inline (“script-src”). search.domain.com:1229:1
    Content Security Policy: The page’s settings blocked the loading of a resource at https://static.cloudflareinsights.com/beacon.min.js (“script-src”).
    Content Security Policy: The page’s settings blocked the loading of a resource at inline (“script-src”). utils.js:35:9
    Content Security Policy: The page’s settings blocked the loading of a resource at inline (“script-src”). index.js:4010:22
    Loading failed for the <script> with source “https://search.domain.com/cdn-cgi/bm/cv/598746589/api.js”. search.domain.com:64:1

     

  13. When I start a VM, it works fine but triggers this error. I think it's due to onboard audio pass-through. The actual error is:

     

    2021-05-27T10:30:24.611787Z qemu-system-x86_64: vfio: Cannot reset device 0000:0e:00.4, depends on group 38 which is not owned.

     

    Here are my IOMMU groups:

     

    image.thumb.png.ccdc3ba22fc649de4337bbd6a4fd5e37.png

     

    I was wondering, what would happen if I pass-through group 38 (Starship/Matisse Reserved SPP)?

    I tried finding out what it was but it's not documented (or at least I didn't find anything useful).

  14. On 11/6/2017 at 3:13 PM, cglatot said:

    Thanks @Ezro - I'm using a different format since I use relative URLs instead of subdomains so I had to take a different method, but seeing yours helped! Hope you can get nextcloud working :)

    Hey! I have the exact same issue on NginxProxyManager. Do you remember what did you do to solve that error?

  15. On 9/2/2020 at 6:26 PM, greg_gorrell said:

    Does anyone know why I would be unable to access Heimdall all of a sudden?  It worked fine for a year now then over the past week since we had a power outage, I try to login and go to a 419 page informing me that my session expired.  I just access this container inside my network via IP so no reverse proxying or DNS issues.  I also tried deleting the keys and still had no luck.  What might be causing this and how can i force a new session?

    Hey! Facing the same issue here. Did you manage to solve it?

  16. 1 hour ago, kizer said:

     

     

    I created some User.Scripts that call for different things so I can pin point some without locking/unlocking everything all the time so I can avoid dupes too. 

    Sure you could run Chattr directly on the file and then just delete it, but honestly I get lazy and often forget code so I just make up some scripts and let them do the work. 

     

    Security.Lock.Media locks

    TV share and Movies share

     

    Security.Unlock.Media unlocks

    TV share and Movies share

     

    Security.Unlock.TV unlocks

    TV share

     

    Security.Unlock.Movies unlocks

    Movies share

     

    on and on

    I was thinking something like a CLI command like: "rm-force" to do the job. It would be easy to implement, just find which disk contains the file remove chattr and remove.

    I'm too lazy so I just do a "no_ransomware include folder" atm