- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to create logical volume on newly added FC Dis...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2011 01:03 AM
02-01-2011 01:03 AM
Can anybody guide me on how to create LV on newly added FC disk
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2011 01:32 AM
02-01-2011 01:32 AM
Re: How to create logical volume on newly added FC Disk
Are you connected to a Storage Area Network (SAN)? Is this new disk inside of SAN?
Rgds.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2011 01:35 AM
02-01-2011 01:35 AM
Re: How to create logical volume on newly added FC Disk
Jose is correct. please tell more about your scenario and how you want to utilize this disk?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2011 01:47 AM
02-01-2011 01:47 AM
Solution( to configure the disk on hp-ux)
#ioscan -fn
#ioscan -funCdisk
(Check the disk present onto the system)
identify the disk and note down the device file . e.g /dev/dsk/c0t1d2
go to sam -> disk and filesystem -> volume groups ->actions create vg.
on options enter the new vg name. select the disk that you noted in ioscan.
there also got the tab to create the lv.
follow these easy steps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2011 01:55 AM
02-01-2011 01:55 AM
Re: How to create logical volume on newly added FC Disk
What are you plans.
Thanks
Manix
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2011 02:07 AM
02-01-2011 02:07 AM
Re: How to create logical volume on newly added FC Disk
I need to actually extend one of my logical volume vg02 where raw files has to be created on which i need to create table space. (one of the table space is showing 91% Usage )
I have 2 FHDD in spare and want to add in disk enclosure. After addition of the disk, lv has to be created as raw device file on which i can extend table space.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2011 02:13 AM
02-01-2011 02:13 AM
Re: How to create logical volume on newly added FC Disk
..this is volume group vg02 where you need to add disks and then create lvol ( raw device )
pvcreate /dev/rdsk/cxtxdx ( for each disk )
vgextend vg02 /dev/dsk/cxtxdx ( for each disk )
lvcreate -L
so in this way you may create a new logical volume.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2011 02:28 AM
02-01-2011 02:28 AM
Re: How to create logical volume on newly added FC Disk
In principle only needs to know if you have enough free physical extents in vg02 to host your required raw area. Raw devices are placed over non-formated areas.
#vgdisplay -v vg02
Rgds.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2011 06:15 AM
02-01-2011 06:15 AM
Re: How to create logical volume on newly added FC Disk
You haven't mentioned your operating system or LVM version because here it does matter. Adding to Manix's comments... the following commands will be required if you are using LVMv1 or releases 11.23 and before.
Before vgcreate execute :-
mkdir /dev/vg02
mknod /dev/vg02/group c 64 0x020000
Remember the number you see there after c can be 64 or 128 depending on the LVM version. LVMv1 has kernel driver 64 and v2 has 128.
> Manix
lvcreate -L
As of my knowledge the lvcreate takes the size in megabytes by default unlike fsadm. Not sure about that "M". You don't require it!
Don't forget to assign points rajhans.
Regards
Ismail Azad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2011 06:24 AM
02-01-2011 06:24 AM
Re: How to create logical volume on newly added FC Disk
I just mean to says "mbs" by M -)
Thanks
Manix
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2011 06:27 AM
02-01-2011 06:27 AM
Re: How to create logical volume on newly added FC Disk
Thanks
Manix
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2011 07:23 AM
02-01-2011 07:23 AM
Re: How to create logical volume on newly added FC Disk
Operating System is HP-UX 11i.
I have inserted the disks 2 nos in the enclosure and leveling process is completed successfully.
Now i need to create raw device file as per our structure on which i need to create the table space.
What to do ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2011 09:24 AM
02-01-2011 09:24 AM
Re: How to create logical volume on newly added FC Disk
if require you can give appropriate permission also to this raw lv.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2011 09:27 AM
02-01-2011 09:27 AM
Re: How to create logical volume on newly added FC Disk
you runs newfs -F vxfs
Thanks
Manix