ZFS RAID 1 eine Platte defekt PMX im Netzwerk nicht erreichbar

Aus genau diesem Grund habe ich mich noch nicht mit Secureboot beschäftigt. Wenn du eine Doku gefunden hat wo drin steht was du alles anpassen musst, dann ist ja gut. Ich lasse bei mir Secureboot deaktiviert und die Server wo ich mit secureboot installiere, haben in der Regen einen Hardware Raid Controller, wo der Diskausfall und Austausch völlig Transparent abläuft.
 
Ja so ne richtige Doku ist das nicht.
Hab nur gelesen wie das Proxmox macht und das secure Boot hier noch recht neu ist.
Ich lasse es jetzt mal so.....
Trotzdem danke für die Unterstützung....
 
Es geht auch einfacher. Wenn eine Platte defekt ist, die gegen eine neue Platte ersetzen und folgends Perl-Script starten.
Getestet per ZFS Raid 10, aber ZFS Raid 1 sollte auch funktionieren.
Je nach Anbindung kann bei Pos4 ein anderer Suchbegriff eingetragen werden.

#!/usr/bin/perl

# Hole den ZPool Namen und das fehlende Laufwerk
#======================================================
$Status=`/usr/sbin/zpool status`;
$Pos1=index($Status,"CKSUM");
$Pos2=index($Status," ",Pos1+7);
$Pos3=index($Status,"REMOVED");
$Pos4=rindex($Status,"scsi",$Pos3);

$ZPool=substr($Status,$Pos1+7,$Pos2);
$AltesLaufwerk=substr($Status,$Pos4,$Pos3-$Pos4);

$ZPool=~ s/^\s+|\s+$//g; # Trim
$AltesLaufwerk=~ s/^\s+|\s+$//g; # Trim

# Suche Neue Disk
#==================
$Text1 = `/usr/bin/lsblk -o name`;

for (my $j = 97; $j < 123; $j++) { # von a bis z
$Pos1 = index($Text1, "sd" . chr($j) . "1");
if ($Pos1 == -1) {
$Disk = "sd" . chr($j);
# gibt es ein neues Laufwerk?
$Pos1 = index($Text1, $Disk);
if ($Pos1 > 0) { last; } # OK, neues Laufwerk gefunden
$Disk = "";
}
}

if ($Disk eq "") {print "Es gibt kein weiteres Laufwerk!"; exit; } # kein neúes Laufwerk gefunden

$Text1 = `/usr/bin/ls -l /dev/disk/by-id`;
$Pos1 = index($Text1, "../../" . $Disk);
$Pos2 = rindex($Text1, ":", $Pos1);
$NeuesLaufwerk = substr($Text1, $Pos2 + 4, $Pos1 - $Pos2 - 7);

$Befehl="zpool replace ". $ZPool. " ". $AltesLaufwerk . " " . $NeuesLaufwerk;

print "Soll der Befehl (".$Befehl.") ausgeführt werden? (j/n)\n";
$Zeichen=substr(<>,0,1);

if ($Zeichen eq "j")
{
$Ausgabe=`$Befehl`;
}
 
Last edited:
  • Like
Reactions: goifalracer

About

The Proxmox community has been around for many years and offers help and support for Proxmox VE, Proxmox Backup Server, and Proxmox Mail Gateway.
We think our community is one of the best thanks to people like you!

Get your subscription!

The Proxmox team works very hard to make sure you are running the best software and getting stable updates and security enhancements, as well as quick enterprise support. Tens of thousands of happy customers have a Proxmox subscription. Get yours easily in our online shop.

Buy now!