接上使用ISCSI作为后端存储,使用NFS作为后端存储配置
参考官方文档:https://wiki.openstack.org/wiki/How_to_deploy_cinder_with_NFS
在node2节点做一个存储
安装软件包
yum install openstack-cinder targetcli python-keystone
安装nfs
yum -y install nfs-utils rpcbind
创建挂载目录
mkdir -p /data/nfs
编辑配置文件vim /etc/exports
/data/nsf *(rw,sync,no_root_squash)
启动nfs
systemctl start rpcbind systemctl start nfs
systemctl enable rpcbind
systemctl enable nfs
修改配置文件(可以从上一篇配置文档拷贝过来修改,其他数据库,消息队列,keystone配置不变去掉[lvm]配置添加nfs配置)
[nfs] #模块路径是/usr/lib/python2.7/site-packages/cinder/volume/drivers/nfs.py volume_driver=cinder.volume.drivers.nfs.NfsDriver nfs_shares_config = /etc/cinder/nfs_shares nfs_mount_point_base = $state_path/mnt
创建文件/etc/cinder/nfs_shares内容为
192.168.0.115:/data/nfs
原配置文档enabled_backends = lvm改为
[DEFAULT]
enabled_backends = nfs
未完待续。。。