-
Notifications
You must be signed in to change notification settings - Fork 110
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Server unreachable after using debian 11 script with raidz1 #49
Comments
KVM Console, check if the server is back up. Probably not. |
No activity on the KVM, I did get this error when running the script: modprobe: fatal module zfs not found in directory /lib/modules/6.3.7 |
The same problem |
Finally I have found a setup that works for me, maybe it will be helpful:
# shellcheck disable=SC2086
zpool create \
...
-O mountpoint=/boot -R $c_zfs_mount_dir -f \
- $v_bpool_name $pools_mirror_option "${bpool_disks_partitions[@]}"
+ $v_bpool_name raidz "${bpool_disks_partitions[@]}"
# shellcheck disable=SC2086
echo -n "$v_passphrase" | zpool create \
...
-O mountpoint=/ -R $c_zfs_mount_dir -f \
- $v_rpool_name $pools_mirror_option "${rpool_disks_partitions[@]}"
+ $v_rpool_name raidz "${rpool_disks_partitions[@]}"
I found this answer helpful, just |
can you help to check this script works or not? https://github.com/congzhangzh/daily-scripts-4-us/blob/main/zfs-root-on-linux-4-debian/hetzner-debian12-zfs-setup.sh @abionics abionics maybe you can do the test in the Virtual Box first :) |
I'm trying to install a 10x10TB hetzner with raidz1 zfs i figured out how to modify the script to do this the script runs without error but after the server reboots its unreachable via SSH and also cant ping the server. Any suggestions on how i could fix this? Thanks.
The text was updated successfully, but these errors were encountered: