Ich helfe einer Firma am anderen Ende des Landes bei der Wartung ihrer Website und ihres Webservers, der auf CentOS 7 läuft. Die Root-Partition hat ständig nicht genügend Speicherplatz und der Server stürzt ab, also sagen sie, sie hätten weitere 300 GB hinzugefügt. Ich habe Probleme, den neuen Speicherplatz zu identifizieren und ihn der Root-Partition hinzuzufügen.
Hier ist die fdisk -l
Ausgabe.
$ sudo fdisk -l
Disk /dev/sda: 322.1 GB, 322122547200 bytes, 629145600 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk label type: dos
Disk identifier: 0x0007be79
Device Boot Start End Blocks Id System
/dev/sda1 * 2048 1026047 512000 83 Linux
/dev/sda2 1026048 266338303 132656128 8e Linux LVM
Disk /dev/sdb: 136.4 GB, 136365211648 bytes, 266338304 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk /dev/mapper/centos-root: 53.7 GB, 53687091200 bytes, 104857600 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk /dev/mapper/centos-swap: 4160 MB, 4160749568 bytes, 8126464 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk /dev/mapper/centos-home: 77.9 GB, 77921779712 bytes, 152190976 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Ich bin hier verwirrt. /dev/sda hat 322,1 GB und der Datenträgerbezeichnungstyp ist „dos“. Ich gehe davon aus, dass dies der neue Datenträger ist.
Es gibt jedoch sda1- und sda2-Partitionen darauf. Ist das das Betriebssystem?
Ich muss der Partition /dev/mapper/centos-root 300 GB hinzufügen. Wie mache ich das?
Ich füge unten die Ergebnisse einiger anderer Befehle an, die hilfreich sein könnten.
$ sudo pvdisplay
--- Physical volume ---
PV Name /dev/sda2
VG Name centos
PV Size 126.51 GiB / not usable 3.00 MiB
Allocatable yes
PE Size 4.00 MiB
Total PE 32386
Free PE 16
Allocated PE 32370
PV UUID vFa16P-F0LF-hpTo-6xca-Wz83-wfoD-GbxNVp
$ sudo lvmdiskscan
/dev/centos/root [ 50.00 GiB]
/dev/sda1 [ 500.00 MiB]
/dev/centos/swap [ <3.88 GiB]
/dev/sda2 [ 126.51 GiB] LVM physical volume
/dev/centos/home [ 72.57 GiB]
/dev/sdb [ 127.00 GiB]
4 disks
1 partition
0 LVM physical volume whole disks
1 LVM physical volume
$ sudo parted -l
Model: Msft Virtual Disk (scsi)
Disk /dev/sda: 322GB
Sector size (logical/physical): 512B/4096B
Partition Table: msdos
Disk Flags:
Number Start End Size Type File system Flags
1 1049kB 525MB 524MB primary xfs boot
2 525MB 136GB 136GB primary lvm
Error: /dev/sdb: unrecognised disk label
Model: Msft Virtual Disk (scsi)
Disk /dev/sdb: 136GB
Sector size (logical/physical): 512B/512B
Partition Table: unknown
Disk Flags:
Model: Linux device-mapper (linear) (dm)
Disk /dev/mapper/centos-home: 77.9GB
Sector size (logical/physical): 512B/4096B
Partition Table: loop
Disk Flags:
Number Start End Size File system Flags
1 0.00B 77.9GB 77.9GB xfs
Model: Linux device-mapper (linear) (dm)
Disk /dev/mapper/centos-swap: 4161MB
Sector size (logical/physical): 512B/4096B
Partition Table: loop
Disk Flags:
Number Start End Size File system Flags
1 0.00B 4161MB 4161MB linux-swap(v1)
Model: Linux device-mapper (linear) (dm)
Disk /dev/mapper/centos-root: 53.7GB
Sector size (logical/physical): 512B/4096B
Partition Table: loop
Disk Flags:
Number Start End Size File system Flags
1 0.00B 53.7GB 53.7GB xfs
Antwort1
Ich habe gerade dieses hervorragende Tutorial gefunden, das alle meine Probleme gelöst hat. Ich habe es zweimal durchgearbeitet. Einmal, um den ungenutzten /dev/sda-Speicherplatz als LVM-Partition zu formatieren und ihn dem logischen Datenträger hinzuzufügen. Und ein zweites Mal, um die neue /dev/sdb-Festplatte zu formatieren und sie dem logischen Datenträger hinzuzufügen.
Mein CentOS-Root-Festplattenspeicherplatz wurde von 54 GB auf 376 GB vergrößert!