- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Creating volume groups on SAN
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-06-2007 01:39 AM
02-06-2007 01:39 AM
Creating volume groups on SAN
MSA1000 at 1
array A
logicaldrive 1 (139 GB, RAID 1+0, OK)
logicaldrive 2 (139 GB, RAID 1+0, OK)
array B
logicaldrive 3 (139 GB, RAID 1+0, OK)
logicaldrive 4 (139 GB, RAID 1+0, OK)
array C
logicaldrive 5 (139 GB, RAID 1+0, OK)
logicaldrive 6 (139 GB, RAID 1+0, OK)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2007 02:25 AM
02-06-2007 02:25 AM
Re: Creating volume groups on SAN
fdisk -l
The devices normally have /dev/sd
Then, the procedure is almost the same.
pvcreate /dev/sd
vgcreate datavg /dev/sd
lvcreate -y firstlv -L 1G datavg
mkfs -t ext3 /dev/datavg/firstlv
tune2fs -i0 -c0 -m0 /dev/datavg/firstlv
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2007 02:47 AM
02-06-2007 02:47 AM
Re: Creating volume groups on SAN
I can't see it thro' fdisk. fdisk shows only the internal disks. Here is the output of the fdisk command..
Do I have do something to make the enable the linux host to see the SAN - MSA1000?
#fdisk -l
WARNING: GPT (GUID Partition Table) detected on '/dev/sda'! The util fdisk doesn't support GPT. Use GNU Parted.
Disk /dev/sda: 300.0 GB, 300000000000 bytes
255 heads, 63 sectors/track, 36472 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 1 36473 292968749+ ee EFI GPT
WARNING: GPT (GUID Partition Table) detected on '/dev/sdb'! The util fdisk doesn't support GPT. Use GNU Parted.
Disk /dev/sdb: 300.0 GB, 300000000000 bytes
255 heads, 63 sectors/track, 36472 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sdb1 1 36473 292968749+ ee EFI GPT
Thanks.
Geetha.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2007 03:34 AM
02-06-2007 03:34 AM
Re: Creating volume groups on SAN
It worked - it had to do with SSP. Thanks for your help! PS reply and I'll assign you a 10.
Geetha.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2007 06:09 AM
02-06-2007 06:09 AM
Re: Creating volume groups on SAN
Thank you very much.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2007 06:09 AM
02-06-2007 06:09 AM
Re: Creating volume groups on SAN
Output of fdisk -l:
Disk /dev/sda: 149.9 GB, 149945548800 bytes
255 heads, 63 sectors/track, 18229 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 1 18230 146431199+ ee EFI GPT
WARNING: GPT (GUID Partition Table) detected on '/dev/sdb'! The util fdisk doesn't support GPT. Use GNU Parted.
Disk /dev/sdb: 149.9 GB, 149945548800 bytes
255 heads, 63 sectors/track, 18229 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sdb1 1 18230 146431199+ ee EFI GPT
WARNING: GPT (GUID Partition Table) detected on '/dev/sdc'! The util fdisk doesn't support GPT. Use GNU Parted.
Disk /dev/sdc: 300.0 GB, 300000000000 bytes
255 heads, 63 sectors/track, 36472 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sdc1 1 36473 292968749+ ee EFI GPT
WARNING: GPT (GUID Partition Table) detected on '/dev/sdd'! The util fdisk doesn't support GPT. Use GNU Parted.
Disk /dev/sdd: 300.0 GB, 300000000000 bytes
255 heads, 63 sectors/track, 36472 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sdd1 1 36473 292968749+ ee EFI GPT
I want to pvcreate on /dev/sda (SAN 149 G logical partition). How do I do it? I get the error...
#pvcreate /dev/sda
Device /dev/sda not found (or ignored by filtering).