jxjelly

Members
  • Posts

    30
  • Joined

  • Last visited

Everything posted by jxjelly

  1. Unfortunately, my situation has gone in the reverse direction. I previously got the error but was able to connect remotely, now I still get the error but am unable to connect remotely.
  2. Then why are you replying? This post was made specifically in the Unraid Connect section and was asking for help with unraid connect
  3. Does windows care if the UUID suddenly changes? I have a old baremetal installation that i've converted into a vm from your tutorials but have been worried about changing the UUID on it for non-gpu vms
  4. Booted up windows to get the log and ran into a memory related blue screen. Running memtest64 getting errors on 4, 6 & 7. So this is probably the cause of my issues.
  5. It is disabled on my router and in my network settings. This weekend I had my longest period of uptime in a while from Friday till 4AM Monday. I'll have to pull the logs again when I get home.
  6. I'm still having issues this time no nvidia crash in the logs. Nginx keeps giving me issues. syslog
  7. You know what, I think I also sent my syslogs to a share on the cache drive which might be why it wouldn't go offline from the physical power button
  8. Tried turning the computer off with the power button which took down docker but didn't complete shutting down. I was able to ssh in and /etc/rc.d/rc.php-fpm restart allowed me to reach the gui again. I saw the server was prevented from shutting down because it ran into trouble shutting down the array. Shutting down cache drive around 18:41 Couldn't get the diagnostics because it was freezing at nvidia-smi Gui went unresponsive a few times while navigating the server. the php restart got it back every time. Ultimately the restart button in the gui got it to restart. Looking at the syslogs Oct 20 07:47:36 Monolith webGUI: Successful login user root from 209.107.189.2 [...] Oct 20 07:48:47 Monolith php-fpm[5983]: [WARNING] [pool www] server reached max_children setting (50), consider raising it At 07:47 was the last time I was able to log in. The other line I included above I wonder if it is the problem. Not sure why I'm hitting so many max children. Oct 20 20:18:48 Monolith kernel: _swap_info_get: Bad swap file entry 3ffffffffffbf Oct 20 20:18:48 Monolith kernel: BUG: Bad page map in process php-fpm pte:00008000 pmd:1a6f38067 Oct 20 20:18:48 Monolith kernel: addr:0000154493f33000 vm_flags:00000075 anon_vma:0000000000000000 mapping:ffff888107c6f3e8 index:ee Oct 20 20:18:48 Monolith kernel: file:libc-2.36.so fault:shmem_fault mmap:shmem_mmap read_folio:0x0 Oct 20 20:18:48 Monolith kernel: CPU: 0 PID: 29542 Comm: php-fpm Tainted: P D W O 5.19.14-Unraid #1 Oct 20 20:18:48 Monolith kernel: Hardware name: Gigabyte Technology Co., Ltd. Z390 AORUS PRO WIFI/Z390 AORUS PRO WIFI-CF, BIOS F12 11/05/2021 This bit also looked suspicious And then apologies for the end of the syslogs I had to reboot a few times to get access and download them and diagnostics (different issue for another time) monolith-diagnostics-20221020-2114.zip syslog
  9. I've been having the same issues; enabled syslog mirror to flash and it just happened again. Will post my logs when I get home tonight. Also if I give the GUI long enough to load I eventually get an nginx "500 Internal Server Error"
  10. So, could you tell me if the following is a bad idea or not? A docker I want to run on dockerhub copies all of its working files to /sd in the Dockerfile. And because of what you explained above by mapping /sd:%appdata%/sd the container doesn't see its files anymore because the files are covered up by the bind-mount. If I add a Post Argument of: mv -f /sd/* /appdata && ln -s /appdata /sd and change my mapping to /appdata:%appdata%/sd would it read across the link fine?
  11. I don't think this is the correct way to do this. Not sure what problems you were having with the standard config. This worked for me, just make sure you're on the same network as SWAG ## Version 2021/05/18 # make sure that your dns has a cname set for <container_name> and that your <container_name> container is not using a base url server { listen 443 ssl; listen [::]:443 ssl; server_name audiobookshelf.*; include /config/nginx/ssl.conf; client_max_body_size 0; # enable for ldap auth, fill in ldap details in ldap.conf #include /config/nginx/ldap.conf; # enable for Authelia #include /config/nginx/authelia-server.conf; location / { # enable the next two lines for http auth #auth_basic "Restricted"; #auth_basic_user_file /config/nginx/.htpasswd; # enable the next two lines for ldap auth #auth_request /auth; #error_page 401 =200 /ldaplogin; # enable for Authelia #include /config/nginx/authelia-location.conf; include /config/nginx/proxy.conf; include /config/nginx/resolver.conf; set $upstream_app audiobookshelf; set $upstream_port 80; set $upstream_proto http; proxy_pass $upstream_proto://$upstream_app:$upstream_port; } }
  12. None of them are running, I had accidentally run two of them the other day to test something and the killed each other, but the OOM error occurred like a day later. Also the first time this happened none of them were running either, but a parity check was happening.
  13. Could it be related to these windows being unresolved from this other issue of mine that started with 6.11?
  14. Not sure what caused it or what was killed. This is the second time this has happened since 6.11, the first time I rebooted before getting diagnostic. monolith-diagnostics-20221002-1016.zip
  15. This is a bit old, however, I'm able to access the webui it behind Swag with Authelia for authentication. I have Swag configured to only forward the webUI port the rest of the ports are accessible without modification via steam link by default ## Version 2022/09/08 # "set $upstream_app <HOSTIP>;" for host mode, HOSTIP being the IP address of steam server { listen 443 ssl; listen [::]:443 ssl; server_name steam.*; include /config/nginx/ssl.conf; client_max_body_size 0; # enable for ldap auth (requires ldap-location.conf in the location block) #include /config/nginx/ldap-server.conf; # enable for Authelia (requires authelia-location.conf in the location block) include /config/nginx/authelia-server.conf; location / { # enable the next two lines for http auth #auth_basic "Restricted"; #auth_basic_user_file /config/nginx/.htpasswd; # enable for ldap auth (requires ldap-server.conf in the server block) #include /config/nginx/ldap-location.conf; # enable for Authelia (requires authelia-server.conf in the server block) include /config/nginx/authelia-location.conf; include /config/nginx/proxy.conf; include /config/nginx/resolver.conf; set $upstream_app <HOSTIP>; set $upstream_port 8083; set $upstream_proto http; proxy_pass $upstream_proto://$upstream_app:$upstream_port; } } Update: Just saw this post, I'm not currently passing this above, but I was only passing the webUI to set stuff up not play games.
  16. Nothing in the console but this "issue" comes up when I open the windows Okay, I just found something weird. So the box doesn't fill until I load a second browser tab and try to open the same window. At that point the content is filled in the first window.
  17. This issue started with updating to 6.11, all plugins are updated. Tried uninstalling docker folders plugin and rebooting but that didn't fix it. monolith-diagnostics-20220927-1232.zip
  18. Have you figured this out yet? I'm trying to get mine to work too
  19. https://xpenology.com/forum/topic/58682-m2-to-sata-card-it-will-work/?do=findComment&comment=271385 Possibly, you aren't the only one to make that speculation. But it is also a common enough typo in that case that I believed it to be a thing without having the familiarity to make and educated comparison. All the same, I can't cancel the ebay order and microcenter is good about returns, and I need to pick up more ram. And long term the LSI card supports more drives. Thanks for the help though.
  20. Figured it out. The power cables for that drive and others that was not connected on the PSU side. 🤦 And while the card seemed to work, I already ordered a LSI card to replace it, so I will be returning it. So I can't confirm the reliability of JMS585 vs JMB585
  21. Hello, I recently got this expander card https://www.vantecusa.com/products_detail.php?p_id=286 contacted Vantec Support to find out it is using the Jmicron JMS585 chipset. At the same time I moved Unraid and all my drives over to a different case (different CPU, MOBO, etc.) And I'm having weird issues with my cache drive not showing up. It was originally plugged into the mobo, I tried different mobo ports and on the Vantec expander and it is not showing up. When I get home I'm gonna try taking the expander out and see if its recognized with just the original drives all on the mobo. Posting to see if anyone has any insight on the chip or something else I should try.
  22. I got this to work with these instructions https://www.pcworld.com/article/438925/how-to-run-steamos-in-a-virtual-machine.html I did get stuck at the “Steam OS Desktop” needing a password and found that I can just set it from the ctrl+alt+F2 terminal from the previous step.
  23. I was having an issue too. What's in your homeserver.log?