Having problem with mounting in HPUX


 
Thread Tools Search this Thread
Operating Systems HP-UX Having problem with mounting in HPUX
# 1  
Old 08-24-2010
Having problem with mounting in HPUX

Hi Gurus,

I'm using HP-UX B.11.23 system. I've been having some problem in mounting a filesystem that has been defined in /etc/fstab as shown below.

fstab entries:
Code:
/dev/vgsap/ora10264 /oracle/PRD/102_64 vxfs rw,suid,nolargefiles,delaylog,datainlog 0 2
/dev/vgsap/orasapreog /oracle/PRD/sapreorg vxfs rw,suid,nolargefiles,delaylog,datainlog 0 2
/dev/vgsap/oraarch /oracle/PRD/oraarch vxfs rw,suid,nolargefiles,delaylog,datainlog 0 2

When I executed "mount -a", it display the following:
Code:
mount: /dev/vgsap/oraarch: No such file or directory
mount: /dev/vgsap/orasapreog: No such file or directory
mount: /dev/vgsap/ora10264: No such file or directory

I've tried to delete these directories from /oracle/PRD directory and recreate it. But it's still the same result.

FYI, my "vgsap" is actually located in my san disk, not on local disk.

Please kindly advice what could be the issue and how can it be fixed.

Thank you.

- Peter
# 2  
Old 08-25-2010
What your OS is saying is that it has no such filesystems to mount... ( not the mount points...).
I would start by looking if the VG is available :
Code:
vgdisplay vgsap
# If youre prompted:
vgdisplay: Volume group not activated.
vgdisplay: Cannot display volume group "vgsap".
# OR
vgdisplay: Volume group "/dev/vgsap" does not exist in the "/etc/lvmtab" file.
vgdisplay: Cannot display volume group "vgsap".
# then find out why , else
#  it exist then
vgdisplay -v vgsap|more    
# now look if the logical volumes oraarch orasapreorg and ora10264 exist


Last edited by vbe; 08-25-2010 at 05:45 AM.. Reason: addendum
This User Gave Thanks to vbe For This Post:
# 3  
Old 09-13-2010
Hi vbe,

Thanks for your response.

Sorry for late response as I was having some issues with my internet connection.

I will try your method and trouble shoot the problem.

Once again, thank you.

Cheers.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Red Hat

Problem mounting SAMBA please help

I am trying to mount SAMBA/CIFS and it just won't work Here are my settings...please let me know what i did wrong This is Centos 6.4 box Thanks! cat /etc/samba/smb.conf comment = Samba path = /home/vm1/Desktop/samba writable = yes public = yes findsmb ... (3 Replies)
Discussion started by: nokia3310
3 Replies

2. Solaris

Problem mounting iscsi filesystem

Hi, I have a strange problem with iscsi. My vfstab entry looks like this: /dev/md/dsk/d100 /dev/md/rdsk/d100 /zones/ssapp0895v01 ufs 2 iscsi - After rebooting, the filesystem gets mounted with the option "nosetuid". I believe the default should be "suid" /zones/ssapp0895v01 on... (0 Replies)
Discussion started by: alvaro66
0 Replies

3. Ubuntu

Problem mounting harddisk

Hi all I am having a great deal of trouble mounting a harddisk on my Ubuntu 9.10 desktop. Output from "fdisk -l": Disk /dev/sda: 640.1 GB, 640135028736 bytes 86 heads, 15 sectors/track, 969196 cylinders Units = cylinders of 1290 * 512 = 660480 bytes Disk identifier: 0x00000001 ... (5 Replies)
Discussion started by: jnymarkp
5 Replies

4. UNIX for Dummies Questions & Answers

mounting problem

I have successfully installed redhat linux in my PC. But when i am trying to mount cdrom with the command "mount /dev/sda1 /mnt/cdrom" I am getting the following error "Unknown device /dev/sda1". Can anyone help me in this regard. cheers RRK (3 Replies)
Discussion started by: ravi raj kumar
3 Replies

5. UNIX for Dummies Questions & Answers

CD mounting problem

I have a Sun9 server. When I put a CD into it, I keep getting: Server1{root}:$PWD=> mount: Permission denied mount: cannot mount /vol/dev/dsk/c0t6d0/roxio1 It mounts fine in my Sun8 boxes. What am I doing wrong? (I'm logged in as root). Thanks! (0 Replies)
Discussion started by: FredSmith
0 Replies

6. Shell Programming and Scripting

Mounting problem.

Hi, I wanted to mount my windows folder under linux using samba server.. I just run this command : $mount -t smbfs -o fmask=666,ajay //16.100.225.179/Build_stage /mnt/share ajay is user name .. it prompted for password i have given that now i saw error message like 27893: session setup... (1 Reply)
Discussion started by: ajayyadavmca
1 Replies

7. UNIX for Dummies Questions & Answers

Problem with mounting

Hi people, I've made some search about it but i didn't find anything. I tried to mount my floppy, mount -t /dev/fd0 /mnt but it didn't work... it says : "Device not configured". Can you help me please??? And mounting my dos partiton... mount -t vfat /dev/hdc1... (6 Replies)
Discussion started by: Erythro73
6 Replies

8. UNIX for Dummies Questions & Answers

HPUX mounting problems

Hi all We are using two HPUX servers one C-class and one K-class.... But only one of this server has tape drive......and to back up the filesystem in the othe server i need to mount the file systems on the server having tape device....But i don't know how to mount the file system of one... (1 Reply)
Discussion started by: Prafulla
1 Replies

9. UNIX for Dummies Questions & Answers

Oracle problem with HPUX 11.0

HI all I think i can get a perfect solution for our problem here. we r using oracle 7i on hpux 11.0 as a billing server .The thing is it used to get hanged sometime and we need to unmount and need to mount the oracle DB then we need to start the oracle process.The process running in that... (6 Replies)
Discussion started by: edwin_francis
6 Replies

10. UNIX for Dummies Questions & Answers

mounting disk problem

i am using Interactive Unix 4.1.1 and i have a disk from a another unix machine which is Unix Slackware 2.1 i'm having problem mounting the disk. it gives me an error message, ??? is there any solution to this ??? it say the disk has invalid file system (1 Reply)
Discussion started by: mharck29
1 Replies
Login or Register to Ask a Question