博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Skipping clustered volume group
阅读量:6368 次
发布时间:2019-06-23

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

问题:在这次RHCE考试中,使用图形化创建LVM时候不小心勾选了集群,结果出现以下错误:

pvcreate command failed. Command attempted: "/sbin/pvcreate -M 2 /dev/sda5" - System Error Message:   Can't initialize physical volume "/dev/sda5" of volume group "clustered" without -ff

解决方法:

[root@localhost yum.repos.d]# vgs  Skipping clustered volume group clustered[root@localhost yum.repos.d]# vgscan  Reading all physical volumes.  This may take a while...  Skipping clustered volume group clustered

网上查找的资料

However, a local volume group has been incorrectly set up as clustered, and there isnot a cluster set up for the locking, when unset the cluster flag is attempted to be removed, vgchange will print out "Skipping cluster volume group."

In order to fix this, edit the /etc/lvm/lvm.conf file and set locking_type = 0. Then run the command vgchange -cn VolumeGroupName. After this, change the locking_type in the /etc/lvm/lvm.conf back to the original value.

根据说明我把/etc/lvm/lvm.conf中的locking_type = 1修改成了locking_type = 0,发现并未能解决问题

[root@localhost ~]# vgchange -c n vgo  WARNING: Locking disabled. Be careful! This could corrupt your metadata.  Volume group "vgo" not found[root@localhost ~]#

这时候想起了之前老师说的dd命令,于是

[root@localhost ~]# dd if=/dev/zero of=/dev/sda5 bs=1M count=1616+0 records in16+0 records out16777216 bytes (17 MB) copied, 8.80356 s, 1.9 MB/s[root@localhost ~]#

问题成功解决!


#########公众号:w_caibao###########

         与技术无关,与“宝宝”相连

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

你可能感兴趣的文章
广州牵引力来告诉你学编程先学什么语言好?
查看>>
广州牵引力总结初学者怎样学好UI设计?
查看>>
使用Metrics方法级远程监控Java程序
查看>>
Spring核心系列之Bean的生命周期
查看>>
VasSonic源码之并行加载
查看>>
小程序 LRU 存储设计
查看>>
Android 多线程之阻塞队列
查看>>
[译] 关于 Angular 依赖注入你需要知道的
查看>>
Haskell 在 macOS 下的环境搭建
查看>>
适配mpvue平台的的微信小程序日历组件mpvue-calendar
查看>>
【Linux学习】 Redis常用的一些指令
查看>>
Spring Cloud 中使用Feign解决参数注解无法继承的问题
查看>>
数据迁移方案 + Elasticsearch在综合搜索列表实现
查看>>
干货 | 分分钟教你用Python创建一个区块链
查看>>
Angular开发实践(八): 使用ng-content进行组件内容投射
查看>>
canvas+websocket+vue做一个完整的你画我猜小游戏
查看>>
android复习清单
查看>>
工作代码备用
查看>>
spring cloud互联网分布式微服务云平台规划分析--spring cloud定时调度平台
查看>>
说说如何配置 Webpack
查看>>