I am not an educated computer guy, so please be gentle with me :)
I have a server I use to run plex with sonarr and radarr. I am trying to create a raid array on it. I have 10x 12TB drives and I want to use RAID 5
I am running Ubuntu 22.04.4 LTS and I connect from a laptop using ssh
Hardware specs are as follows MB - Super Micro X11SCH-LN4F CPU - Intel Xeon E-2224 Coffee Lake 3.4 GHz Memory - Micron 16GB 288-Pin VLP ECC Unbuffered DDR4 2666
So first I use this command
sudo umount /dev/sdb?; sudo wipefs --all --force /dev/sdb?; sudo wipefs --all --force /dev/sdb
For drives b-k
Then I
sudo sgdisk -n 1:0:0 /dev/sdb
For Drives b-k
and then I
sudo mdadm --create --verbose /dev/md0 --level=5 --raid-devices=10 /dev/sd[b-k]1
When I run the create command, it works initially but within a minute or two, as its building the array, the computer randomly restarts. The only errors I can see in the logs are ones like these ones ...
EDAC MC0: 1 CE ie31200 CE on unknown memory (csrow:2 channel:1 page:0x0 offset:0x0 grain:1 syndrome:0xf8)
EDAC MC0: 1 CE ie31200 CE on unknown memory (csrow:2 channel:1 page:0x0 offset:0x0 grain:1 syndrome:0x45)
Otherwise to me it looks like it just restarts for no reason. When the computer restarts the array is there, but instead of md0 it's md127, its status is clean, degraded and I can't get it to do anything from there.
Here's the system log right before the crash




