Physical Volume Create Conundrum

 
Thread Tools Search this Thread
Operating Systems Linux Red Hat Physical Volume Create Conundrum
# 1  
Old 09-11-2013
Physical Volume Create Conundrum

I want to start by saying I already resolved my issue but I want to understand why I am seeing what I am seeing.

I have a server with a RAID controller two 500GB drives and six 600GB drives. The two 500GB drives are mirrored and have the OS installed on them. The six 600GB they wanted set as RAID0 and wanted them in a new volume group. My issue was getting the full size out of the RAID0 Virtual Disk.

On boot I saw the disk:
sd 0:2:1:0: [sdb] 7025983488 512-byte logical blocks: (3.59 TB/3.27 TiB)

I work mostly with LUNs and generally I can just do a pvcreate and I am ready to use the disk. But I could not issue a pvcreate on /dev/sdb and it seemed to need to be partitioned. So I used fdisk using this procedure, which I found to be the same on Red Hat's website:
Create Linux Partition

Once I had a partition I was issuing a pvcreate /dev/sdb1 and each time I ended up with only 2TB of usable space.
Code:
[root@testserv dev]# pvcreate /dev/sdb1
  Physical volume "/dev/sdb1" successfully created
[root@testserv dev]# pvscan
  PV /dev/sda2   VG vg01            lvm2 [464.75 GiB / 355.75 GiB free]
  PV /dev/sdb1                      lvm2 [2.00 TiB]

I ended up just issuing a pvremove, removing the partition and issueing a vgcreate against the raw device. I noticed that the vgcreate created the physical volume for me and it was the correct size.
Code:
[root@testserv ~]# vgcreate scratchvg /dev/sdb
  No physical volume label read from /dev/sdb
  Physical volume "/dev/sdb" successfully created
  Volume group "scratchvg" successfully created
[root@testserv ~]# pvscan
  PV /dev/sdb    VG scratchvg   lvm2 [3.27 TiB / 3.27 TiB free]
  PV /dev/sda2   VG vg01        lvm2 [464.75 GiB / 355.75 GiB free]
  Total: 2 [3.73 TiB] / in use: 2 [3.73 TiB] / in no VG: 0 [0   ]

My question is, what am I missing? I am completely fine with just skipping the fdisk and pvcreate steps but I thought I had to do those steps. What was I doing wrong? What is the proper procedure when taking a Virtual Disk presented by a RAID controller and creating or adding it to a volume group? I guess my own answer would be the procedure that works, but since I found so many references to using fdisk and partitioning the disk I am curious why that was not working for me. Thanks.
# 2  
Old 09-11-2013
pvcreate has had some known issues in the past reporting wrong sizes, especially for disks larger than 1 TB.

It has been fixed in most recent RHEL releases. Which version are you using?

As for using raw devices vs partitions I'm gonna quote myself from another post in this forum:

Quote:
Red Hat strongly suggests not to use whole disks as PVs.

Using whole disks increases the risk of an external application overwriting the data under some rare circumstances.

Here's an example of this bug:
https://bugzilla.redhat.com/show_bug.cgi?id=154841

Even though most of those problems have already been patched and fixed in latest RHEL releases, Red Hat still discourages that practice for production/critical systems.

Using partitions of type 8e is the preferred method.
# 3  
Old 09-12-2013
I am using RHEL 6.4.

Thanks so much for providing the info on whole disk PVs, I had not known that was an issue.

---------- Post updated at 09:47 AM ---------- Previous update was at 07:15 AM ----------

So I have done some more reading on this and probably the reason I had not encountered issues is that I had not previously brought in an disks over 2TB. Our LUNs are typically always 2TB. From everything I have read, fdisk has a 2TB limit, instead I used parted. So then I at least was not using whole disk PVs.

I just wanted to add this info in the event others encounter this post in the future.

Also worth noting is that I have an additional array that provideds a virtual disk over 16TB. There is a 16TB limit with mkfs.ext4 although I read about some what seemed like unsupported methods for exceeding 16TBs.
# 4  
Old 09-12-2013
Yes, when you start having such large environments, ext3 and ext4 start to look limited.

reiserfs, vxfs, xfs or another "large enterprise" solution would work better in those cases.

Under ext4 -although unlikely- you may even deplete the available inodes before you run out of disk space.
# 5  
Old 09-12-2013
Quote:
Originally Posted by verdepollo
Under ext4 -although unlikely- you may even deplete the available inodes before you run out of disk space.
I have had this happen in ext2, ext3, and ext4, but always with very small filesystems, where the defaults are extremely conservative.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Red Hat

No space in volume group. How to create a file system using existing logical volume

Hello Guys, I want to create a file system dedicated for an application installation. But there is no space in volume group to create a new logical volume. There is enough space in other logical volume which is being mounted on /var. I know we can use that logical volume and create a virtual... (2 Replies)
Discussion started by: vamshigvk475
2 Replies

2. AIX

Position of the logical volume on the physical volume

Hello everyone, I just read that while creating a logical volume(LV) we can choose the region of the physical volume (PV) in which the LV should be created. When I say region I mean: outer edge - outer middle - center - inner middle and inner edge. Can anyone help me understand the utility... (11 Replies)
Discussion started by: adilyos
11 Replies

3. Red Hat

Create volume using LVM over 2 physical disks

I wanted to know how we can combine volumes over 2 physical drives. # fdisk -l Disk /dev/sda: 42.9 GB, 42949672960 bytes 255 heads, 63 sectors/track, 5221 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Device Boot Start End Blocks Id System /dev/sda1 ... (16 Replies)
Discussion started by: ikn3
16 Replies

4. UNIX for Dummies Questions & Answers

Confusion Regarding Physical Volume,Volume Group,Logical Volume,Physical partition

Hi, I am new to unix. I am working on Red Hat Linux and side by side on AIX also. After reading the concepts of Storage, I am now really confused regarding the terminologies 1)Physical Volume 2)Volume Group 3)Logical Volume 4)Physical Partition Please help me to understand these concepts. (6 Replies)
Discussion started by: kashifsd17
6 Replies

5. UNIX for Dummies Questions & Answers

importing a Physical Volume

hi guys I'm added a new disk to my server (virtual environment) It used to be a Volume Group=Vol_Group01 and Logical Volume= Log_Vol_01_Data and I see /dev/sdb Disk /dev/sdb doesn't contain a valid partition table Disk /dev/sdc: 133.1 GB, 133143986176 bytes 255 heads, 63... (3 Replies)
Discussion started by: karlochacon
3 Replies

6. AIX

How to determine the physical volume fo the disks

This is the report I got running the comand rptconf, but I would like to know what is the capacity of the disks installed into our server power 6 with AIX System Model: IBM,7778-23X Machine Serial Number: 1066D5A Processor Type: PowerPC_POWER6 Processor Implementation Mode: POWER 6... (6 Replies)
Discussion started by: cucosss
6 Replies

7. UNIX for Dummies Questions & Answers

trying to devide existing physical volume

hi guys, i`m trying to take 40GB of my sda5 (/home mounted) to create new volume group(lvc) here`s the df output: /dev/sda2 7,9G 3,3G 4,3G 44% / udevfs 5,0M 60K 5,0M 2% /dev shmfs 379M 0 379M 0% /dev/shm tmpfs 379M ... (2 Replies)
Discussion started by: neverhood
2 Replies

8. AIX

Basic Filesystem / Physical Volume / Logical Volume Check

Hi! Can anyone help me on how I can do a basic check on the Unix filesystems / physical volumes and logical volumes? What items should I check, like where do I look at in smit? Or are there commands that I should execute? I need to do this as I was informed by IBM that there seems to be... (1 Reply)
Discussion started by: chipahoys
1 Replies

9. UNIX for Dummies Questions & Answers

Physical volume- no free physical partitions

I was in smit, checking on disc space, etc. and it appears that one of our physical volumes that is part of a large volume group, has no free physical partitions. The server is running AIX 5.1. What would be the advisable step to take in this instance? (9 Replies)
Discussion started by: markper
9 Replies

10. UNIX for Dummies Questions & Answers

physical volume and physical disk.

Hello, I need explanations about physical disks and physical volumes. What is the difference between these 2 things? In fact, i am trying to understand what the AIX lspv2command does. Thank you in advance. (2 Replies)
Discussion started by: VeroL
2 Replies
Login or Register to Ask a Question