博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
kvm 创建 基于glusterfs的存储池
阅读量:6837 次
发布时间:2019-06-26

本文共 1760 字,大约阅读时间需要 5 分钟。

# virsh pool-create-as --name primary_gluster --type netfs --source-host $(hostname) --source-path /primary --source-format glusterfs --target /mnt/libvirt/primary_gluster

The components that the above command uses, are: 

  • primary_gluster : the name of the storage pool in libvirt
  • netfs : the type of the pool, netfs mounts the 'pool' under the given --target
  • $(hostname) : one of the Gluster servers that is part of the Trusted Storage Pool that provides the Gluster volume
  • /primary : the name of the Gluster volume
  • /mnt/libvirt/primary_gluster : directory where libvirt will mount the Gluster volume
[root@sn192-168-174-65 mnt]# repoquery -ql glusterfs-fuse
/sbin/mount.glusterfs#包含了用户空间挂载命令.
/usr/bin/fusermount-glusterfs
/usr/lib64/glusterfs/3.6.0.54/xlator/mount/fuse.so
[root@sn192-168-174-65 mnt]# yum install glusterfs-fuse -y
===================================================================================================================================
 Package                            Arch                       Version                              Repository                Size
===================================================================================================================================
Installing:
 glusterfs-fuse                     x86_64                     3.6.0.54-1.el6                       base                      81 k
Updating for dependencies:
 glusterfs                          x86_64                     3.6.0.54-1.el6                       base                     1.3 M
 glusterfs-api                      x86_64                     3.6.0.54-1.el6                       base                      62 k
 glusterfs-libs                     x86_64                     3.6.0.54-1.el6                       base                     272 k
Transaction Summary
===================================================================================================================================
Install       1 Package(s)
Upgrade       3 Package(s)
virsh # pool-define-as --name gv_KVM --type netfs --source-host 192.168.174.80 --source-path /gv_KVM --source-format glusterfs --target /mnt/gv
Pool gv_KVM defined
virsh # pool-start gv_KVM
Pool gv_KVM started

转载地址:http://qsxkl.baihongyu.com/

你可能感兴趣的文章
pcDuino 3维模型
查看>>
iOS应用架构谈 网络层设计方案 一 (转帖)
查看>>
指针和数组
查看>>
字体阴影、粗细
查看>>
10分钟还原HTTPS真像!
查看>>
单例模式的笔记
查看>>
Linux压力测试工具
查看>>
自由职业一时爽,一直自由一直爽
查看>>
浏览器事件window.onload、o…
查看>>
对象回收时Weak指针自动被置为nil的实现原理
查看>>
php URLEncode() / php URLEncode函数 php urldecode...
查看>>
phpunit mock
查看>>
NodeJS、NPM安装配置步骤(windows版本)
查看>>
mac常用的命令
查看>>
knn 分类
查看>>
【总结】Hadoop中的MultipleOutputs实践
查看>>
测试常见问题
查看>>
SHOP++ 中Hibernate 注解 用法
查看>>
jQuery EasyUI使用教程之创建基本的树网格
查看>>
Fluentd日志处理-插件使用和调试问题(四)
查看>>