Centos

我的伺服器是否設置了軟體 RAID 1?

  • December 10, 2011

我最近得到了我的專用伺服器,它有 2 個 1TB 硬碟,所以我在設置時要求提供軟體 RAID 1,我的供應商保證伺服器有 RAID 1(軟體)。我堅持如果我要執行 RAID 1,那台伺服器上只有 1TB 的可用硬碟,看來我有 1,79TB 可用,這讓我覺得他們沒有正確設置它。

現在的主要問題是: 我如何通過 SSH 命令檢查我是否在 CentOS 中執行任何類型的軟體 RAID?

命令“mount”的輸出:

[root@saturn ~]# mount
/dev/mapper/isw_bhicgbideg_Volume0p1 on / type ext3 (rw)
proc on /proc type proc (rw)
sysfs on /sys type sysfs (rw)
devpts on /dev/pts type devpts (rw,gid=5,mode=620)
/dev/mapper/isw_bhicgbideg_Volume0p3 on /vz type ext3 (rw)
tmpfs on /dev/shm type tmpfs (rw)
none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw)
sunrpc on /var/lib/nfs/rpc_pipefs type rpc_pipefs (rw)

命令“df -h”的輸出:

[root@saturn ~]# df -h
Filesystem            Size  Used Avail Use% Mounted on
/dev/mapper/isw_bhicgbideg_Volume0p1
                     9.5G  1.4G  7.6G  16% /
/dev/mapper/isw_bhicgbideg_Volume0p3
                     1.8T  3.6G  1.7T   1% /vz
tmpfs                 7.8G     0  7.8G   0% /dev/shm

命令“fdisk -l”的輸出

Disk /dev/sda: 2000.3 GB, 2000398934016 bytes
255 heads, 63 sectors/track, 243201 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

  Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *           1        1275    10241406   83  Linux
/dev/sda2            1276        3570    18434587+  82  Linux swap / Solaris
/dev/sda3            3571      243200  1924827975   83  Linux

Disk /dev/sdb: 2000.3 GB, 2000398934016 bytes
255 heads, 63 sectors/track, 243201 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

  Device Boot      Start         End      Blocks   Id  System
/dev/sdb1   *           1        1275    10241406   83  Linux
/dev/sdb2            1276        3570    18434587+  82  Linux swap / Solaris
/dev/sdb3            3571      243200  1924827975   83  Linux

或者我有可能有 2 個 2TB 硬碟嗎?

cat /proc/mdstat會告訴你是否使用 linux 軟體 RAID。

最重要的是看起來像 LVM - 檢查顯示命令以查看設置的樣子。 pvdisplay, vgdisplay, lvdisplay.

您從該fdisk輸出中獲得了 2 個 2TB HD,而不是 1TB,因此這可能是您所看到的差異。

引用自:https://serverfault.com/questions/339640