一区二区三区在线-一区二区三区亚洲视频-一区二区三区亚洲-一区二区三区午夜-一区二区三区四区在线视频-一区二区三区四区在线免费观看

服務器之家:專注于服務器技術及軟件下載分享
分類導航

Linux|Centos|Ubuntu|系統進程|Fedora|注冊表|Bios|Solaris|Windows7|Windows10|Windows11|windows server|

服務器之家 - 服務器系統 - Linux - RHEL7使用ssm命令管理LVM的方法

RHEL7使用ssm命令管理LVM的方法

2021-12-10 16:28Linux教程網 Linux

下面小編就為大家帶來一篇RHEL7使用ssm命令管理LVM的方法。小編覺得挺不錯的,現在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧

1.安裝ssm

[root@localhost ~]# yum -y install system-storage-manager.noarch

2.檢查硬盤和LVM信息

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[root@localhost ~]# sudo ssm list
---------------------------------------------------------//物理設備
Device    Free   Used   Total Pool Mount point
---------------------------------------------------------
/dev/sda           50.00 GB    PARTITIONED
/dev/sda1          500.00 MB    /boot  
/dev/sda2           2.02 GB    SWAP  
/dev/sda3           47.50 GB    /    
/dev/sdb  4.00 GB 1.00 GB  5.00 GB vg00     
/dev/sdc  5.00 GB 0.00 KB  5.00 GB vg00     
/dev/sdd            5.00 GB        
/dev/sde            5.00 GB        
---------------------------------------------------------
----------------------------------------------//存儲池
Pool Type Devices   Free   Used  Total
----------------------------------------------
vg00 lvm  2    8.99 GB 1.00 GB 9.99 GB
----------------------------------------------
----------------------------------------------------------------------------------//存儲池中的LVM卷
Volume     Pool Volume size FS   FS size    Free Type  Mount point
----------------------------------------------------------------------------------
/dev/vg00/lv00 vg00   1.00 GB ext2  1.00 GB 957.62 MB linear     
/dev/sda1        500.00 MB xfs  496.67 MB 406.23 MB part  /boot  
/dev/sda3        47.50 GB xfs  47.47 GB  43.87 GB part  /    
----------------------------------------------------------------------------------

3.將物理磁盤添加到LVM池中

?
1
2
3
[root@localhost ~]# ssm add -p vg00 /dev/sdd
 Physical volume "/dev/sdd" successfully created
 Volume group "vg00" successfully extended

4.查看當前存儲池

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[root@localhost ~]# ssm list
---------------------------------------------------------
Device    Free   Used   Total Pool Mount point
---------------------------------------------------------
/dev/sda           50.00 GB    PARTITIONED
/dev/sda1          500.00 MB    /boot  
/dev/sda2           2.02 GB    SWAP  
/dev/sda3           47.50 GB    /    
/dev/sdb  4.00 GB 1.00 GB  5.00 GB vg00     
/dev/sdc  5.00 GB 0.00 KB  5.00 GB vg00     
/dev/sdd  5.00 GB 0.00 KB  5.00 GB vg00     
/dev/sde            5.00 GB        
---------------------------------------------------------
------------------------------------------------
Pool Type Devices   Free   Used   Total
------------------------------------------------
vg00 lvm  3    13.99 GB 1.00 GB 14.99 GB
------------------------------------------------
----------------------------------------------------------------------------------
Volume     Pool Volume size FS   FS size    Free Type  Mount point
----------------------------------------------------------------------------------
/dev/vg00/lv00 vg00   1.00 GB ext2  1.00 GB 957.62 MB linear     
/dev/sda1        500.00 MB xfs  496.67 MB 406.23 MB part  /boot  
/dev/sda3        47.50 GB xfs  47.47 GB  43.87 GB part  /    
----------------------------------------------------------------------------------

5.擴大LVM卷

?
1
2
3
4
5
6
7
8
[root@localhost ~]# ssm resize -s +10G /dev/vg00/lv00
fsck,來自 util-linux 2.23.2
/dev/mapper/vg00-lv00: 11/65536 files (0.0% non-contiguous), 4763/262144 blocks
 Extending logical volume lv00 to 11.00 GiB
 Logical volume lv00 successfully resized
resize2fs 1.42.9 (28-Dec-2013)
Resizing the filesystem on /dev/mapper/vg00-lv00 to 2883584 (4k) blocks.
The filesystem on /dev/mapper/vg00-lv00 is now 2883584 blocks long.

6.查看結果

 

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[root@localhost ~]# ssm list
---------------------------------------------------------
Device    Free   Used   Total Pool Mount point
---------------------------------------------------------
/dev/sda           50.00 GB    PARTITIONED
/dev/sda1          500.00 MB    /boot  
/dev/sda2           2.02 GB    SWAP  
/dev/sda3           47.50 GB    /    
/dev/sdb  0.00 KB 5.00 GB  5.00 GB vg00     
/dev/sdc  0.00 KB 5.00 GB  5.00 GB vg00     
/dev/sdd  3.99 GB 1.01 GB  5.00 GB vg00     
/dev/sde            5.00 GB        
---------------------------------------------------------
------------------------------------------------
Pool Type Devices   Free   Used   Total
------------------------------------------------
vg00 lvm  3    3.99 GB 11.00 GB 14.99 GB
------------------------------------------------
----------------------------------------------------------------------------------
Volume     Pool Volume size FS   FS size    Free Type  Mount point
----------------------------------------------------------------------------------
/dev/vg00/lv00 vg00   11.00 GB ext2  11.00 GB  10.31 GB linear     
/dev/sda1        500.00 MB xfs  496.67 MB 406.23 MB part  /boot  
/dev/sda3        47.50 GB xfs  47.47 GB  43.87 GB part  /    
----------------------------------------------------------------------------------

7.更新文件系統

[root@localhost ~]# mke2fs /dev/vg00/lv00

8.掛載結果

?
1
2
3
4
5
6
7
8
9
[root@localhost ~]# df -hT
文件系統       類型   容量 已用 可用 已用% 掛載點
/dev/sda3       xfs    48G 3.6G  44G  8% /
devtmpfs       devtmpfs 906M   0 906M  0% /dev
tmpfs         tmpfs   914M  80K 914M  1% /dev/shm
tmpfs         tmpfs   914M 8.9M 905M  1% /run
tmpfs         tmpfs   914M   0 914M  0% /sys/fs/cgroup
/dev/sda1       xfs    497M 116M 382M  24% /boot
/dev/mapper/vg00-lv00 ext2    11G 5.0M  11G  1% /mnt

9.創建新的LVM池

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[root@localhost ~]# mkdir /soft
[root@localhost ~]# ssm create -s 1G -n soft --fstype xfs -p mysoft /dev/sde /soft 
//create創建、-s 1G指定大小、-n soft文件名稱、--fstype xfs文件系統、-p mysoft指定存儲池名稱、/dev/sde /soft指定那塊磁盤掛載哪個目錄上
 Physical volume "/dev/sde" successfully created
 Volume group "mysoft" successfully created
 Logical volume "soft" created
meta-data=/dev/mysoft/soft    isize=256  agcount=4, agsize=65536 blks
     =            sectsz=512  attr=2, projid32bit=1
     =            crc=0
data   =            bsize=4096  blocks=262144, imaxpct=25
     =            sunit=0   swidth=0 blks
naming  =version 2       bsize=4096  ascii-ci=0 ftype=0
log   =internal log      bsize=4096  blocks=2560, version=2
     =            sectsz=512  sunit=0 blks, lazy-count=1
realtime =none          extsz=4096  blocks=0, rtextents=0

10.查看結果

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[root@localhost ~]# ssm list
-----------------------------------------------------------
Device    Free   Used   Total Pool  Mount point
-----------------------------------------------------------
/dev/sda           50.00 GB     PARTITIONED
/dev/sda1          500.00 MB     /boot  
/dev/sda2           2.02 GB     SWAP  
/dev/sda3           47.50 GB     /    
/dev/sdb  0.00 KB 5.00 GB  5.00 GB vg00      
/dev/sdc  0.00 KB 5.00 GB  5.00 GB vg00      
/dev/sdd  3.99 GB 1.01 GB  5.00 GB vg00      
/dev/sde  4.00 GB 1.00 GB  5.00 GB mysoft     
-----------------------------------------------------------
--------------------------------------------------
Pool  Type Devices   Free   Used   Total
--------------------------------------------------
mysoft lvm  1    4.00 GB  1.00 GB  5.00 GB
vg00  lvm  3    3.99 GB 11.00 GB 14.99 GB
--------------------------------------------------
----------------------------------------------------------------------------------------
Volume      Pool  Volume size FS    FS size    Free Type  Mount point
----------------------------------------------------------------------------------------
/dev/vg00/lv00  vg00    11.00 GB ext2  11.00 GB  10.31 GB linear /mnt  
/dev/mysoft/soft mysoft   1.00 GB xfs  1014.00 MB 1013.88 MB linear /soft  
/dev/sda1          500.00 MB xfs  496.67 MB  406.23 MB part  /boot  
/dev/sda3          47.50 GB xfs   47.47 GB  43.87 GB part  /    
----------------------------------------------------------------------------------------

11.對LVM卷快照

 

?
1
2
3
4
5
6
7
8
9
[root@localhost ~]# ssm snapshot /dev/mysoft/soft
 Rounding up size to full physical extent 208.00 MiB
 Logical volume "snap20160531T120543" created
[root@localhost ~]# ssm list snapshots
------------------------------------------------------------------------------
Snapshot             Origin Pool  Volume size   Size Type
------------------------------------------------------------------------------
/dev/mysoft/snap20160531T120543 soft  mysoft  208.00 MB 21.30 KB linear
------------------------------------------------------------------------------

 12.刪除LVM卷

?
1
2
3
4
5
6
[root@localhost ~]# ssm remove /dev/mysoft/soft
Device '/dev/mysoft/soft' is mounted on '/soft' Unmount (N/y/q) ? Y
Do you really want to remove active logical volume snap20160531T120543? [y/n]: y
 Logical volume "snap20160531T120543" successfully removed
Do you really want to remove active logical volume soft? [y/n]: y
 Logical volume "soft" successfully removed

13.查看結果

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[root@localhost ~]# ssm list
-----------------------------------------------------------
Device    Free   Used   Total Pool  Mount point
-----------------------------------------------------------
/dev/sda           50.00 GB     PARTITIONED
/dev/sda1          500.00 MB     /boot  
/dev/sda2           2.02 GB     SWAP  
/dev/sda3           47.50 GB     /    
/dev/sdb  0.00 KB 5.00 GB  5.00 GB vg00      
/dev/sdc  0.00 KB 5.00 GB  5.00 GB vg00      
/dev/sdd  3.99 GB 1.01 GB  5.00 GB vg00      
/dev/sde  5.00 GB 0.00 KB  5.00 GB mysoft     
-----------------------------------------------------------
--------------------------------------------------
Pool  Type Devices   Free   Used   Total
--------------------------------------------------
mysoft lvm  1    5.00 GB  0.00 KB  5.00 GB
vg00  lvm  3    3.99 GB 11.00 GB 14.99 GB
--------------------------------------------------
----------------------------------------------------------------------------------
Volume     Pool Volume size FS   FS size    Free Type  Mount point
----------------------------------------------------------------------------------
/dev/vg00/lv00 vg00   11.00 GB ext2  11.00 GB  10.31 GB linear /mnt  
/dev/sda1        500.00 MB xfs  496.67 MB 406.23 MB part  /boot  
/dev/sda3        47.50 GB xfs  47.47 GB  43.87 GB part  /    
----------------------------------------------------------------------------------

14.刪除存儲池

?
1
2
[root@localhost ~]# ssm remove mysoft
 Volume group "mysoft" successfully removed

15.查看結果

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[root@localhost ~]# ssm list
---------------------------------------------------------
Device    Free   Used   Total Pool Mount point
---------------------------------------------------------
/dev/sda           50.00 GB    PARTITIONED
/dev/sda1          500.00 MB    /boot  
/dev/sda2           2.02 GB    SWAP  
/dev/sda3           47.50 GB    /    
/dev/sdb  0.00 KB 5.00 GB  5.00 GB vg00     
/dev/sdc  0.00 KB 5.00 GB  5.00 GB vg00     
/dev/sdd  3.99 GB 1.01 GB  5.00 GB vg00     
/dev/sde            5.00 GB        
---------------------------------------------------------
------------------------------------------------
Pool Type Devices   Free   Used   Total
------------------------------------------------
vg00 lvm  3    3.99 GB 11.00 GB 14.99 GB
------------------------------------------------
----------------------------------------------------------------------------------
Volume     Pool Volume size FS   FS size    Free Type  Mount point
----------------------------------------------------------------------------------
/dev/vg00/lv00 vg00   11.00 GB ext2  11.00 GB  10.31 GB linear /mnt  
/dev/sda1        500.00 MB xfs  496.67 MB 406.23 MB part  /boot  
/dev/sda3        47.50 GB xfs  47.47 GB  43.87 GB part  /    
----------------------------------------------------------------------------------

以上就是小編為大家帶來的RHEL7使用ssm命令管理LVM的方法全部內容了,希望大家多多支持服務器之家~

延伸 · 閱讀

精彩推薦
主站蜘蛛池模板: 韩国最新理论三级在线观看 | 天美传媒影视在线免费观看 | 91色资源网在线观看 | 日韩欧美精品一区二区 | caoporn草棚在线视频 | 精品国产原创在线观看视频 | fc2免费人成为视频 eeuss18影院www国产 | 5g影院天天 | 国产一卡二卡3卡4卡四卡在线视频 | 男人的j放进女人的p全黄 | h片在线看 | 7777奇米| 国色天香视频完整版 | 暖暖 免费 高清 日本 在线 | 嫩草影院永久入口在线观看 | 九九热视频免费观看 | 公交车上插入 | juliaann大战七个黑人 | 亚洲一二区视频 | 国产成人愉拍精品 | 国产在线看片网站 | 青青草高清视频 | 99视频免费在线观看 | 无码人妻精品一区二区蜜桃在线看 | 免费免费啪视频在线观播放 | 午夜尤物 | 国产原创一区二区 | 欧美调教打屁股spank视频 | 欧美性xxxxx| 免费三及片 | 互换娇妻爽文100系列小说 | 激情小说欧美图片 | 精品国产原创在线观看视频 | 2022国产麻豆剧传媒古装 | 欧美黑人性猛交╳xx╳动态图 | 性free非洲老妇 | 欧美最猛性xxxxx男男 | 亚洲人成在线观看一区二区 | 成人在线播放视频 | 99国产成人精品2021 | 欧美成人一区二区三区 |