在Centos8 中使用Stratis管理本地儲存(一)

roc_guo發表於2021-03-15
Stratis是RHEL8/ 8中提供的一個新的本地儲存管理工具,它將有助於在塊裝置上建立分層儲存。在RHEL8/Centos8中,可以通過安裝兩個軟體包獲得Stratis。在RHEL7,我們有了BTRFS檔案系統,Red Hat在RHEL 8中刪除了BTRFS支援,並提供了Stratis本地儲存管理系統。

為了開始使用Stratis,我們需要新增一些磁碟裝置,並建立一個單獨的池,在一個Stratis池中,可以建立多個檔案系統。

安裝Stratis

通過下面 使用yum安裝stratis:

[root@localhost ~]# yum -y install stratis*

在Centos8 中使用Stratis管理本地儲存(一)在Centos8 中使用Stratis管理本地儲存(一)
安裝完成之後,設定開機啟用並立即啟動:

[root@localhost ~]# systemctl enable stratisd --now

檢視以下是否啟動:
在Centos8 中使用Stratis管理本地儲存(一)在Centos8 中使用Stratis管理本地儲存(一)

列出可用磁碟

在這新增了5個2GB磁碟,使用下面 列出磁碟:

[root@localhost ~]# lsblk

在Centos8 中使用Stratis管理本地儲存(一)在Centos8 中使用Stratis管理本地儲存(一)

列出現有的池和檔案系統:

使用下面幾條命令列出塊裝置、stratis池、檔案系統:

[root@localhost ~]# stratis blockdev list 
[root@localhost ~]# stratis pool list
[root@localhost ~]# stratis filesystem list

在Centos8 中使用Stratis管理本地儲存(一)在Centos8 中使用Stratis管理本地儲存(一)

建立池和檔案系統

首先,我們建立“data01_pool”的池。將/dev/sda,/dev/sdb,/dev/sdc,/dev/sdd新增到該池中:

[root@localhost ~]# stratis pool create data01_pool /dev/sd{a..d}
[root@localhost ~]# stratis pool list 
[root@localhost ~]# stratis blockdev list

在Centos8 中使用Stratis管理本地儲存(一)在Centos8 中使用Stratis管理本地儲存(一)
上面命令建立"data01_pool"池、檢視池、檢視塊裝置。

下面從“data01_pool”池中建立兩個檔案系統:

[root@localhost ~]# stratis filesystem create data01_pool user_data01
[root@localhost ~]# stratis filesystem create data01_pool user_data02

下面命令列出建立的檔案系統:

[root@localhost ~]# stratis filesystem list 
或者
[root@localhost ~]# stratis fs list

在Centos8 中使用Stratis管理本地儲存(一)在Centos8 中使用Stratis管理本地儲存(一)
上圖中列出的檔案系統中,欄位 Device是stratis裝置的位置。

掛載建立好的檔案系統

一旦從池中建立了檔案系統,請建立一個掛載點並掛載檔案系統。預設情況下在建立檔案系統時,它將使用XFS檔案系統對其進行格式化。

# 建立掛載點
[root@localhost ~]# mkdir /user_data01
[root@localhost ~]# mkdir /user_data02
# 掛載檔案系統
[root@localhost ~]# mount /stratis/data01_pool/user_data01 /user_data01/
[root@localhost ~]# mount /stratis/data01_pool/user_data02 /user_data02/

在Centos8 中使用Stratis管理本地儲存(一)在Centos8 中使用Stratis管理本地儲存(一)
使用 df -h檢視掛載的情況:

[root@localhost ~]# df -h /user_data*
Filesystem                                                                                       Size  Used Avail Use% Mounted on
/dev/mapper/stratis-1-359fd7072d8349d390741a1a71f885fb-thin-fs-0657c26979ed443aa4d3a70c15606e1c  1.0T  7.2G 1017G   1% /user_data01
/dev/mapper/stratis-1-359fd7072d8349d390741a1a71f885fb-thin-fs-b91b970f23d94eb6b2ed56f347f770d2  1.0T  7.2G 1017G   1% /user_data02

在Centos8 中使用Stratis管理本地儲存(一)在Centos8 中使用Stratis管理本地儲存(一)



希望你已經觀察到我們沒有格式化檔案系統。Stratis程式為我們解決了這一問題,並建立了XFS型別的檔案系統。

同樣,由於自動精簡配置,預設情況下,它將顯示檔案系統大小為1 TB,並且該大小僅是虛擬的,而不是實際的。要檢查實際大小,您將必須使用Stratis命令

使用 df -hT /user*匹配出user_data01和user_data02掛載點的檔案系統,可以看到他們的型別都是XFS格式。
在Centos8 中使用Stratis管理本地儲存(一)在Centos8 中使用Stratis管理本地儲存(一)

在/etc/fstab中新增開機掛載的條目

首先需要獲取檔案系統的UUID,有兩種方式:

第一種方式,是通過使用 stratis fs list就可以獲取到檔案系統的UUID。

[root@localhost ~]# stratis fs list

在Centos8 中使用Stratis管理本地儲存(一)在Centos8 中使用Stratis管理本地儲存(一)
第二種方式,使用blkid獲取塊儲存的uuid,過濾出stratis檔案系統:

[root@localhost ~]# blkid|grep stratis

在Centos8 中使用Stratis管理本地儲存(一)在Centos8 中使用Stratis管理本地儲存(一)
下面就是將掛在資訊寫入到 /etc/fstab中:

[root@localhost ~]# echo "UUID=0657c26979ed443aa4d3a70c15606e1c /user_data01  xfs  defaults,x-systemd.requires=stratis.service  0 0" >> /etc/fstab 
[root@localhost ~]# echo "UUID=b91b970f23d94eb6b2ed56f347f770d2 /user_data02  xfs  defaults,x-systemd.requires=stratis.service  0 0" >> /etc/fstab

在Centos8 中使用Stratis管理本地儲存(一)在Centos8 中使用Stratis管理本地儲存(一)

檢查Stratis守護程式版本

如果需要檢查Stratis執行的守護程式版本,使用如下命令:

[root@localhost ~]# stratis daemon version 
2.1.0

在Centos8 中使用Stratis管理本地儲存(一)在Centos8 中使用Stratis管理本地儲存(一)

總結

Stratis是RHEL8/Centos8中提供的一個新的本地儲存管理工具,它將有助於在塊裝置上建立分層儲存。在RHEL8/Centos8中,可以通過安裝兩個軟體包獲得Stratis。


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31524109/viewspace-2842054/,如需轉載,請註明出處,否則將追究法律責任。

相關文章