-
Server crashing 2x in last 48 hours
Appreciate the advice, any time frame I should run the server on one stick for it to be definitive?
-
Server crashing 2x in last 48 hours
I ran Memtest86 on the RAM sticks (Crucial Pro 128GB Kit (2x64GB) DDR5 RAM, 5600MHz) when I purchased them roughly 6 months ago for 2 passes, no errors. Crash occurred around 16:09, wasn't doing anything heavy on the server, all drives were spun down I believe. The previous crash I attributed to a docker container being in a restart loop, I have since removed the container. Not sure what could be causing this crash. Attached diagnostics zip to post. Appreciate any help. This is a snippet of my syslog for the 12 hours before the crash, not shore what the x86/split lock detection or the Server kernel: traps: chromium[3052958] trap int3 is about. Mar 22 04:34:42 Server kernel: traps: chromium[2268916] trap int3 ip:55d2328dca0b sp:7ffe9c2921b0 error:0 in chromium[6118a0b,55d22d695000+c0b6000] Mar 22 04:42:41 Server emhttpd: read SMART /dev/sdc Mar 22 04:43:10 Server emhttpd: read SMART /dev/sdb Mar 22 04:50:01 Server rsyslogd: [origin software="rsyslogd" swVersion="8.2102.0" x-pid="16905" x-info="https://www.rsyslog.com"] rsyslogd was HUPed Mar 22 04:59:00 Server emhttpd: spinning down /dev/sdb Mar 22 04:59:00 Server emhttpd: spinning down /dev/sdc Mar 22 06:56:35 Server kernel: traps: chromium[3052958] trap int3 ip:5569565c8a0b sp:7ffff5b3cb90 error:0 in chromium[6118a0b,556951381000+c0b6000] Mar 22 07:03:49 Server kernel: traps: chromium[3090581] trap int3 ip:556ada948a0b sp:7ffdc19262d0 error:0 in chromium[6118a0b,556ad5701000+c0b6000] Mar 22 08:17:08 Server kernel: x86/split lock detection: #AC: CPU 1/KVM/45742 took a split_lock trap at address: 0xfffff8037c650d8d Mar 22 09:56:36 Server kernel: traps: chromium[4040633] trap int3 ip:5636f0cc2a0b sp:7fff6f81c810 error:0 in chromium[6118a0b,5636eba7b000+c0b6000] Mar 22 10:03:49 Server kernel: traps: chromium[4078120] trap int3 ip:556432aa0a0b sp:7fff5fb89cd0 error:0 in chromium[6118a0b,55642d859000+c0b6000] Mar 22 10:34:41 Server kernel: traps: chromium[55077] trap int3 ip:55cd3603ba0b sp:7ffe98dcc760 error:0 in chromium[6118a0b,55cd30df4000+c0b6000] Mar 22 12:56:36 Server kernel: traps: chromium[856187] trap int3 ip:557abffc4a0b sp:7ffec6474450 error:0 in chromium[6118a0b,557abad7d000+c0b6000] Mar 22 13:03:50 Server kernel: traps: chromium[893618] trap int3 ip:555c4654aa0b sp:7ffc403d0780 error:0 in chromium[6118a0b,555c41303000+c0b6000] Mar 22 14:40:53 Server kernel: x86/split lock detection: #AC: CPU 3/KVM/45744 took a split_lock trap at address: 0xfffff8037c650d8d Mar 22 15:14:33 Server kernel: hrtimer: interrupt took 17448 ns Mar 22 15:56:37 Server kernel: traps: chromium[1926269] trap int3 ip:5563cb6f8a0b sp:7fff46e32ff0 error:0 in chromium[6118a0b,5563c64b1000+c0b6000] Mar 22 16:03:50 Server kernel: traps: chromium[1974396] trap int3 ip:55bb54104a0b sp:7ffe8eeb83b0 error:0 in chromium[6118a0b,55bb4eebd000+c0b6000] Mar 22 16:10:03 Server rc.rsyslogd: Syslog server daemon... Started.server-diagnostics-20260322-1624.zip
-
unraid_user11 started following configuring key-only ssh access , Server crashing 2x in last 48 hours , Keeping Sysctl Changes After Reboot and 1 other
-
Unraid Connect breaks the header background color fade feature (Returned bug - almost the same)
Just installed Unraid Connect plugin and came to say I have the same issue.
-
CPU Temperature via GraphQL?
You are a legend mate! Just got it up and running along with the Home Assistant HACS Unraid API integration and it's working flawlessly! Thank you again!
-
Keeping Sysctl Changes After Reboot
That worked! Thank you. Out of curiosity, why did you put the commands in a function? I wonder why it adding that to the go file didn't do the trick.
-
Keeping Sysctl Changes After Reboot
I am trying to make sysctl changes stick after reboot, specifically sysctl -w fs.inotify.max_user_instances=1024 (I have too many docker containers and Git repos apparently). I tried adding it to /boot/config/go but that didn't work. I also tried creating /boot/config/sysctl.conf and adding it there. Not sure what else to do? Appreciate any help.
-
CPU Temperature via GraphQL?
Thank you for the link. Would it be safe to say that in order to update the API, the Unraid OS would have to be updated? Essentially we would have to wait for the next stable release of Unraid?
-
CPU Temperature via GraphQL?
You're a legend mate. Could you link to the PR so I can follow it please?
-
CPU Temperature via GraphQL?
Looking at the GraphQL sandbox, I don't see temperature options either under metrics → cpu or info → cpu. Is there a way to get the CPU temperature displayed in the dashboard?
-
Home Assistant Unraid Integration
Beautiful! How you getting CPU temp? Looking at the GraphQL sandbox, I don't see temperature options either under metrics → cpu or info → cpu.
-
Slow speed with turbo write
I tried moving large files from the cache to a new 22TB drive with less than 25% usage and still getting transfer speeds of less than 150 MB/s. What could possibly be causing this bottleneck???
-
configuring key-only ssh access
Agree with this. I prefer the method recommended by DiscoverIt method as it is a little closer to Linux standard but I've made a few adjustments below, along with explanations on how it works and why I chose this method. Guide 1. Run this command in terminal: nano /boot/config/ssh/sshd_custom.conf 2. Copy the following into sshd_custom.conf: PermitRootLogin prohibit-password PasswordAuthentication no PubkeyAuthentication yes 3. Save and exit the editor (Ctrl+X, then Y, then Enter) 4. Run this command in the terminal: nano /boot/config/go 5. Copy the following into go: cp -p "/boot/config/ssh/sshd_custom.conf" "/etc/ssh/sshd_custom.conf" sed -i '1i #\n# CUSTOM SSHD INCLUDED IN LAST LINE\n#\n\n' "/etc/ssh/sshd_config" sed -i '$a \\n\n\n\n\n\n\n# Include overriding sshd_custom.conf for SSH key login only\nInclude "/etc/ssh/sshd_custom.conf"' "/etc/ssh/sshd_config" /etc/rc.d/rc.sshd restart 6. Save and exit the editor (Ctrl+X, then Y, then Enter) 7. Optionally, you can run each of the 4 commands individually from Step 5 in the terminal to apply the changes right away without rebooting. Explanation sshd_custom.conf is a custom configuration file for sshd that we created in Step 1 using nano. It is used to override or extend the settings in the default sshd_config file. go is a script that runs automatically at system startup as part of Unraid. It allows you to define custom commands or scripts that should execute each time Unraid boots. cp -p "/boot/config/ssh/sshd_custom.conf" "/etc/ssh/sshd_custom.conf" This command copies the sshd_custom.conf file, created in Step 1, to the /etc/ssh/ folder. sed -i '1i #\n# CUSTOM SSHD INCLUDED IN LAST LINE\n#\n\n' "/etc/ssh/sshd_config" OPTIONAL This adds a few comment lines at the start of sshd_config to indicate that changes have been made. While not necessary, it helps to alert you if you ever need to diagnose SSH settings, especially if Unraid changes how SSH is configured. sed -i '$a \\n\n\n\n\n\n\n# Include overriding sshd_custom.conf for SSH key login only\nInclude "/etc/ssh/sshd_custom.conf"' "/etc/ssh/sshd_config" By default, sshd_config has PermitRootLogin yes, but this will be overridden to PermitRootLogin prohibit-password as stated in sshd_custom.conf. The SSH daemon applies settings in order, which is why the Include command is placed at the end. This ensures that any default settings or future Unraid changes are overridden by your custom configurations. /etc/rc.d/rc.sshd restart This restarts the SSH daemon to apply the new configuration changes.
-
configuring key-only ssh access
I'm officially confused... /boot/config/ssh - from my understanding this is basically the USB drive and is persistent What are these two folders for then: /etc/ssh /root/.ssh ? I can successfully SSH into my Unraid server using keys that I entered in the GUI via Settings -> Users -> root -> SSH authorized keys. Now I am trying to git commit to my Gitea docker container using SSH keys but I am unsure where to put the Gitea keys.
-
unraid_user11 started following [v7.0] Cannot disable password auth for root over SSH.
-
unraid_user11 started following Unexpected reboot
-
Unexpected reboot
How did you know when it was time to replace the battery?
-
Unexpected reboot
Batteries have to be replaced every year?!?!
unraid_user11
Members
-
Joined
-
Last visited