[HPUX] HP Unix pv,vg,lv操作
发表于:2025-12-03 作者:千家信息网编辑
千家信息网最后更新 2025年12月03日,[root@testdb:/#] pvcreate /dev/rdsk/c2t1d4 #使用的字符设备Physical volume "/dev/rdsk/c2t1d4" has been succe
千家信息网最后更新 2025年12月03日[HPUX] HP Unix pv,vg,lv操作[root@testdb:/#] pvcreate /dev/rdsk/c2t1d4 #使用的字符设备
Physical volume "/dev/rdsk/c2t1d4" has been successfully created.
[root@testdb:/#] vgcreate vgora /dev/dsk/c2t1d4 #使用块设备
Increased the number of physical extents per physical volume to 50431.
vgcreate: Volume group "/dev/vgora" could not be created:
VGRA for the disk is too big for the specified parameters. Increase the
extent size or decrease max_PVs/max_LVs and try again.
[root@testdb:/#] diskinfo /dev/rdsk/c2t1d4
SCSI describe of /dev/rdsk/c2t1d4:
vendor: HITACHI
product id: DF600F
type: direct access
size: 206569472 Kbytes
bytes per sector: 512
一个PE Size 默认大小是4M,so...4M*50431=201724M < 201728M (206569472/1024) 所以要增加PE的大小,设置PE Size=32M.
[root@testdb:/#] vgcreate -s 32 vgora /dev/dsk/c2t1d4
Increased the number of physical extents per physical volume to 6303.
Volume group "/dev/vgora" has been successfully created.
Volume Group configuration for /dev/vgora has been saved in /etc/lvmconf/vgora.conf
[root@testdb:/#] lvcreate -L 40G -n lvoracle vgora #不能识别G.so..delete
[root@testdb:/#] lvcreate -L 80G -n lvoradata vgora
[root@testdb:/#] lvremove /dev/vgora/lvoracle
[root@testdb:/#] lvremove /dev/vgora/lvoradata
[root@testdb:/#] lvcreate -L 40960M -n lvoracle vgora
[root@testdb:/#] lvcreate -L 81920M -n lvoradata vgora
[root@testdb:/#] vgdisplay -v vgora #重新查看信息.
[root@testdb:/#] newfs -F vxfs /dev/vgora/lvoracle #需要使用字符设备的,就是一个字母带r的.(带r裸设备使用,不带是文件系统使用的)
UX:vxfs newfs: ERROR: V-3-21623: /dev/vgora/lvoracle is not a character device
[root@testdb:/#] newfs -F vxfs /dev/vgora/rlvoracle
[root@testdb:/#] newfs -F vxfs /dev/vgora/rlvoradata
[root@testdb:/#] mkdir -p /oracle/testdb/oracle
[root@testdb:/#] mkdir -p /oracle/testdb/oradata
[root@testdb:/#] mount /dev/vgora/lvoracle /oracle/testdb/oracle
[root@testdb:/#] mount /dev/vgora/lvoradata /oracle/testdb/oradata
这个时候可以通过bdf查看是否挂载.
如果想要系统系统挂载filesystem,需要在/etc/fstab中添加记录.
[root@testdb:/#] vi /etc/fstab #添加如下内容.
/dev/vgora/lvoracle /oracle/testdb/oracle vxfs delaylog 0 2
/dev/vgora/lvoradata /oracle/testdb/oradata vxfs delaylog 0 2
[root@testdb:/#] mount -a
[root@testdb:/#] lvextend -L 92160M /dev/vgora/lvoradata #增加lv大小
[root@testdb:/#] extendfs -F vxfs /dev/vgora/lvoradata #filesystem不能在线操作.需要umount操作
UX:vxfs extendfs: ERROR: V-3-20144: /dev/vgora/lvoradata is mounted, cannot extend.
[root@testdb:/#] fsadm -F vxfs -b 92160M /oracle/testdb/oradata #使用fsadm 在线操作.
UX:vxfs fsadm: INFO: V-3-25942: /dev/vgora/rlvoradata size increased from 83886080 sectors to 94371840 sectors
[root@testdb:/#] umount /oracle/testdb/oradata
[root@testdb:/#] lvreduce -L 81920M /dev/vgora/lvoradata
root@testdb:/#] mount /dev/vgora/lvoradata /oracle/testdb/oradata
UX:vxfs mount: ERROR: V-3-24706: /dev/vgora/lvoradata no such device or filesystem on it missing one or more devices
[root@testdb:/#] newfs -F vxfs /dev/vgora/rlvoradata #只能这样了.但是这样里面的数据都没有了.
[root@testdb:/#] newfs -o largefiles -F vxfs /dev/vgora/rlvoradata #不加-o 最大支持2G,加了之后支持128G.
[root@testdb:/#] mount -a
[root@testdb:/dev/vgasm#] pvcreate /dev/rdsk/c2t1d3
pvcreate: Could not perform LVM operation on VxVM disk "/dev/rdsk/c2t1d3".
[root@testdb:/dev/vgasm#] pvcreate -f /dev/rdsk/c2t1d3 #加上-f参数,强制执行
Physical volume "/dev/rdsk/c2t1d3" has been successfully created.
[root@testdb:/dev/vgasm#] vgextend vgora /dev/dsk/c2t1d3
[root@testdb:/dev/vgasm#] vgreduce vgora /dev/dsk/c2t1d3
Physical volume "/dev/rdsk/c2t1d4" has been successfully created.
[root@testdb:/#] vgcreate vgora /dev/dsk/c2t1d4 #使用块设备
Increased the number of physical extents per physical volume to 50431.
vgcreate: Volume group "/dev/vgora" could not be created:
VGRA for the disk is too big for the specified parameters. Increase the
extent size or decrease max_PVs/max_LVs and try again.
[root@testdb:/#] diskinfo /dev/rdsk/c2t1d4
SCSI describe of /dev/rdsk/c2t1d4:
vendor: HITACHI
product id: DF600F
type: direct access
size: 206569472 Kbytes
bytes per sector: 512
一个PE Size 默认大小是4M,so...4M*50431=201724M < 201728M (206569472/1024) 所以要增加PE的大小,设置PE Size=32M.
[root@testdb:/#] vgcreate -s 32 vgora /dev/dsk/c2t1d4
Increased the number of physical extents per physical volume to 6303.
Volume group "/dev/vgora" has been successfully created.
Volume Group configuration for /dev/vgora has been saved in /etc/lvmconf/vgora.conf
[root@testdb:/#] lvcreate -L 40G -n lvoracle vgora #不能识别G.so..delete
[root@testdb:/#] lvcreate -L 80G -n lvoradata vgora
[root@testdb:/#] lvremove /dev/vgora/lvoracle
[root@testdb:/#] lvremove /dev/vgora/lvoradata
[root@testdb:/#] lvcreate -L 40960M -n lvoracle vgora
[root@testdb:/#] lvcreate -L 81920M -n lvoradata vgora
[root@testdb:/#] vgdisplay -v vgora #重新查看信息.
[root@testdb:/#] newfs -F vxfs /dev/vgora/lvoracle #需要使用字符设备的,就是一个字母带r的.(带r裸设备使用,不带是文件系统使用的)
UX:vxfs newfs: ERROR: V-3-21623: /dev/vgora/lvoracle is not a character device
[root@testdb:/#] newfs -F vxfs /dev/vgora/rlvoracle
[root@testdb:/#] newfs -F vxfs /dev/vgora/rlvoradata
[root@testdb:/#] mkdir -p /oracle/testdb/oracle
[root@testdb:/#] mkdir -p /oracle/testdb/oradata
[root@testdb:/#] mount /dev/vgora/lvoracle /oracle/testdb/oracle
[root@testdb:/#] mount /dev/vgora/lvoradata /oracle/testdb/oradata
这个时候可以通过bdf查看是否挂载.
如果想要系统系统挂载filesystem,需要在/etc/fstab中添加记录.
[root@testdb:/#] vi /etc/fstab #添加如下内容.
/dev/vgora/lvoracle /oracle/testdb/oracle vxfs delaylog 0 2
/dev/vgora/lvoradata /oracle/testdb/oradata vxfs delaylog 0 2
[root@testdb:/#] mount -a
[root@testdb:/#] lvextend -L 92160M /dev/vgora/lvoradata #增加lv大小
[root@testdb:/#] extendfs -F vxfs /dev/vgora/lvoradata #filesystem不能在线操作.需要umount操作
UX:vxfs extendfs: ERROR: V-3-20144: /dev/vgora/lvoradata is mounted, cannot extend.
[root@testdb:/#] fsadm -F vxfs -b 92160M /oracle/testdb/oradata #使用fsadm 在线操作.
UX:vxfs fsadm: INFO: V-3-25942: /dev/vgora/rlvoradata size increased from 83886080 sectors to 94371840 sectors
[root@testdb:/#] umount /oracle/testdb/oradata
[root@testdb:/#] lvreduce -L 81920M /dev/vgora/lvoradata
root@testdb:/#] mount /dev/vgora/lvoradata /oracle/testdb/oradata
UX:vxfs mount: ERROR: V-3-24706: /dev/vgora/lvoradata no such device or filesystem on it missing one or more devices
[root@testdb:/#] newfs -F vxfs /dev/vgora/rlvoradata #只能这样了.但是这样里面的数据都没有了.
[root@testdb:/#] newfs -o largefiles -F vxfs /dev/vgora/rlvoradata #不加-o 最大支持2G,加了之后支持128G.
[root@testdb:/#] mount -a
[root@testdb:/dev/vgasm#] pvcreate /dev/rdsk/c2t1d3
pvcreate: Could not perform LVM operation on VxVM disk "/dev/rdsk/c2t1d3".
[root@testdb:/dev/vgasm#] pvcreate -f /dev/rdsk/c2t1d3 #加上-f参数,强制执行
Physical volume "/dev/rdsk/c2t1d3" has been successfully created.
[root@testdb:/dev/vgasm#] vgextend vgora /dev/dsk/c2t1d3
[root@testdb:/dev/vgasm#] vgreduce vgora /dev/dsk/c2t1d3
设备
大小
系统
字符
在线
支持
最大
信息
内容
参数
可以通过
字母
就是
数据
文件
时候
强制
数据库的安全要保护哪些东西
数据库安全各自的含义是什么
生产安全数据库录入
数据库的安全性及管理
数据库安全策略包含哪些
海淀数据库安全审计系统
建立农村房屋安全信息数据库
易用的数据库客户端支持安全管理
连接数据库失败ssl安全错误
数据库的锁怎样保障安全
喷码机软件开发
域名未添加到数据库中
我的世界端游无法进入服务器
南京狮子座网络技术
数据库导出mdb
数据库中关系
服务器相关技术的介绍
网络安全的课题反思
把前台数据传到后台数据库
原神服务器维护期间还能更新吗
浪潮服务器创建阵列找不到硬盘
小学网络安全等级保护制度
有哪些最好的云服务器
服务器主板零件认识图解
hp服务器 管理软件
吴云坤谈网络安全
常德网络安全法培训班
虚拟服务器 硬件配置
即时通讯软件开发有哪些
天涯数据库技术支持
智能宾馆软件开发
在线转换的文件会上传服务器吗
铁路网络安全的重要性
tbc3.13数据库
淘宝账号网络安全法的实名认证
网络技术支持3000字报告
辽宁收钱吧互联网科技有限公司
mac数据库比较工具
厦门仪器软件开发公司
省广北京大数据库