pvcreate not working

 
Thread Tools Search this Thread
Operating Systems Linux Red Hat pvcreate not working
# 1  
Old 10-03-2012
pvcreate not working

I have few new EMC disks assigned from Stroage. I can pvcreate small disks (8.7GB), but bigger disks (71GB) are giving problem. -f also doesn't help.
PHP Code:
root@tlcqr201:/> pvcreate /dev/emcpowerge
  
/dev/emcpowergeread failed after 0 of 4096 at 0Input/output error
  
/dev/emcpowergeread failed after 0 of 4096 at 74907582464Input/output error
  
/dev/emcpowergeread failed after 0 of 4096 at 4096Input/output error
  
/dev/emcpowergewrite failed after 0 of 4096 at 4096Input/output error
  Failed to wipe 
new metadata area
  
/dev/emcpowergeFormat-specific setup of physical volume failed.
  
Failed to setup physical volume "/dev/emcpowerge" 
What can be the solution ?
May it be a bad SAN disk ?

Last edited by solaris_1977; 10-03-2012 at 01:27 PM..
# 2  
Old 10-03-2012
try partitioning the disks and trying the pvcreate on the partition.
# 3  
Old 10-12-2012
It's giving an input/output error, fdisk will likely fail as well and you should be able to pvcreate whole disks and LUNs without needing to partition them. pvcreate is just saying it can't write data which is 100% of the time because I/O to the disk fails (you can do a dd to/from it and you'll likely get an error there as well, for example). So the issue isn't with pvcreate, that's just reporting an underlying error.

Just from my experience, this is probably a SAN configuration issue (definitely not a RHEL issue), where the LUNs are presented to the RHEL system but something is preventing actual I/O with those LUNs from happening. I'd have the SAN guys check the zoning configuration to make sure everything is kosher there.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Disk Space Utilization in HTML format working in one environment and not working on the other

Hi Team, I have written the shell script which returns the result of the disk space filesystems which has crossed the threshold limit in HTML Format. Below mentioned is the script which worked perfectly on QA system. df -h | awk -v host=`hostname` ' BEGIN { print "<table border="4"... (13 Replies)
Discussion started by: Harihsun
13 Replies

2. Shell Programming and Scripting

Working web service call not working with curl

Hello, Newbie here, I have a perfectly well working web service call I can issue from chrome (PC Windows 10) and get the results I want (a dimmer being turned on in Fibaro Home Center 2 at level 40) I am not allowed to post urls but the below works with http and :// and... (3 Replies)
Discussion started by: abigbear
3 Replies

3. Red Hat

Pvcreate can't open /dev/xvda2 exclusively mounted filesystem

I downloaded the RH Linux 6.7 from RHEL, I wanted to extend the storage for "/" from default 16GB to say 200GB. Here’s the steps I tried is : 1. Init 1 2. Using “fdisk /dev/xvda” , delete the swap /dev/xvda3 as well as /dev/xvda2 3. Re-create /dev/xvda2 with linux LVM using new end... (7 Replies)
Discussion started by: alnhk
7 Replies

4. UNIX for Advanced & Expert Users

Pvcreate can't open /dev/xvda2 exclusively mounted filesystem

I downloaded the oracle linux 6.7 from RHEL, I wanted to extend the storage for "/" from default 16GB to say 200GB. Here's the steps I tried is : 1. Init 1 2. Using “fdisk /dev/xvda” , delete the swap /dev/xvda3 as well as /dev/xvda2 3. Re-create /dev/xvda2 with linux LVM using new end blocks ... (1 Reply)
Discussion started by: alnhk
1 Replies

5. Shell Programming and Scripting

Automating pbrun /bin/su not working, whenever manually it is working using putty

I am trying to automate a script where I need to use pbrun /bin/su but for some reason it is not passing thru the pbrun as my code below. . ~/.bash_profile pbrun /bin/su - content c h 1 hpsvn up file path I am executing this from an external .sh file that is pointing to this scripts file... (14 Replies)
Discussion started by: jorgejac
14 Replies

6. Red Hat

Pvcreate vs disk partioning

Hi, Case1 ) When a new disk is added ( ex: /dev/sda ), After scanning we create 1 partition for the whole disk ( ex: /dev/sda1 ) and then pvcreate and then add to a volume group. Query ) 1. We can do directly pvcreate on the whole disk also So, what is the difference between 1.... (3 Replies)
Discussion started by: saurabh84g
3 Replies

7. Red Hat

Nslookup working but ping not working at windows client

Hi Team we have created a DNS server at RHEL6.2 environment in 10.20.203.x/24 network. Everything is going well on linux client as nslookup, ping by host etc in entire subnet. We are getting problem in windows client as nslookup working as well but not ping. all the firewall is disabled and... (5 Replies)
Discussion started by: boby.kumar
5 Replies

8. Shell Programming and Scripting

Script not working in cron but working fine manually

Help. My script is working fine when executed manually but the cron seems not to catch up the command when registered. The script is as follow: #!/bin/sh for file in file_1.txt file_2.txt file_3.txt do awk '{ print "0" }' $file > tmp.tmp mv tmp.tmp $file done And the cron... (2 Replies)
Discussion started by: jasperux
2 Replies

9. Solaris

SSH: internal working but external not working

Hi, This is a strange issue: We have an sftp server. Users can ssh to it from internal LAN without any issue, but they can not ssh to it externally via firewall. Here is what I got: OS is Solaris 9. No hosts.allow and hosts.deny files. Please help. Thank you in advance! (7 Replies)
Discussion started by: aixlover
7 Replies

10. Linux

FTP not working under Linux but working under any other OS ??? Very strange

Dear all, I am totally despaired and puzzled. Using Filezilla under Windows under the same network as our Linux servers is working. Using FTP command-line client under any of our Linux debian servers is not working ! I tried with different FTP servers -> same problem ! All commands are... (12 Replies)
Discussion started by: magix_ch
12 Replies
Login or Register to Ask a Question