Blogs Classifieds Downloads FlashChat Gallery Googlemap Invite Friends Links Projects Reviews Wiki
 


Welcome to the pSeries Tech Forums, our free peer-based support site for administrators, engineers and architects working with IBM pSeries servers and software.

You are currently viewing our site as a guest which gives you limited access to view most discussions, articles, tutorials and access our other free features. By joining our community you will be able to collaborate with administrators, engineers and architects charged with designing, delivering or maintaining IBM pSeries server environments.

Founded by a recognized IBM pSeries consultant and IBM Redbook author, pSeries Tech Forums was developed with the single mission of bringing IBM pSeries professionals together into a single self-help community.

Registration is fast, simple and absolutely free to all IT professionals with responsibility for or interest in IBM pSeries servers. We invite you to join our community today!

If you have any problems with the registration process or your account login, please contact contact support.

Our Sponsors
Want to advertise?  


Reply
 
LinkBack Thread Tools
  #1  
Old April 6th, 2008
ManishMandvia's Avatar
ManishMandvia Offline
Junior Member
 
Join Date: February 2008
Posts: 14
Send a message via MSN to ManishMandvia
Filesystem mounting problem

Hi,

In my environment i am having one AIX 5.2 server.

We have create three filesystems namely
/prd/data
/prd/data/database1
/prd/data/database2

We are rebooting that server on monthly basis

After reboot I have observed that all above FS mounted . but we can see any data in /prd/data/database1, /prd/data/database2 FS.

When i checked df -g /prd/data/database1 it were pointing to /prd/data FS.

So i have umount below FS & remount .Now i can able to see correct mount point.

/prd/data/database1
/prd/data/database2

Can anyone assist me what prevent the above 2 FS to mount properly after reboot.

Thanks in advance

Manish Mandvia
__________________
Regards,
Manish Mandvia
AIX administrator
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #2  
Old April 6th, 2008
purplemonkey's Avatar
purplemonkey Offline
Junior Member
 
Join Date: April 2008
Posts: 6
Re: Filesystem mounting problem

Sounds like an overmount situation.

Check your /etc/filesystems file and make sure the lowest heirachy filesystem mounting first. In the order you have them listed above is the correct sequence..

/prd/data
/prd/data/database1
/prd/data/database2
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #3  
Old April 6th, 2008
ManishMandvia's Avatar
ManishMandvia Offline
Junior Member
 
Join Date: February 2008
Posts: 14
Send a message via MSN to ManishMandvia
Re: Filesystem mounting problem

I checked my /etc/filesystems file and found the below filesystem in correct sequence only

/prd/data
/prd/data/database1
/prd/data/database2

What could be other possiblity.
__________________
Regards,
Manish Mandvia
AIX administrator
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #4  
Old April 6th, 2008
purplemonkey's Avatar
purplemonkey Offline
Junior Member
 
Join Date: April 2008
Posts: 6
Re: Filesystem mounting problem

Are you able to give the output of a few commands for more info?

the output of these could be helpful in finding your problem:

* grep -p "/prd/data" /etc/filesystems
* mount

are there any scripts/commands running at boot time which could be mounting file systems?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #5  
Old April 6th, 2008
ManishMandvia's Avatar
ManishMandvia Offline
Junior Member
 
Join Date: February 2008
Posts: 14
Send a message via MSN to ManishMandvia
Re: Filesystem mounting problem

/prd/data:
dev = /dev/lvppdwmy_app1
vfs = jfs
log = /dev/loglv02
mount = false
check = false
/prd/datanew:
dev = /dev/lv05
vfs = jfs2
log = /dev/lv04
mount = false
check = false
options = rw
account = false
/prd/data/data1
dev = /dev/pdwlv03
vfs = jfs
log = /dev/loglv05
mount = true
check = false
options = rw
account = false
/prd/data/data2:
dev = /dev/pdwlv04
vfs = jfs
log = /dev/loglv05
mount = true
check = false
options = rw
account = false


/dev/lvppdwmy_app1 /prd/data jfs Apr 05 15:58 rw,log=/dev/loglv02
/dev/lv05 /prd/datanew jfs2 Apr 05 15:58 rw,log=/dev/lv04
/dev/pdwlv03 /prd/data/data1 jfs Apr 06 02:23 rw,log=/dev/loglv05
/dev/pdwlv04 /pdw/data/data2 jfs Apr 06 02:25 rw,log=/dev/loglv05
__________________
Regards,
Manish Mandvia
AIX administrator
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #6  
Old April 6th, 2008
purplemonkey's Avatar
purplemonkey Offline
Junior Member
 
Join Date: April 2008
Posts: 6
Re: Filesystem mounting problem

Hi Manish,

Everything looks ok there, except for the stanza on the "/prd/data/data1" filesystem.

I can see for that stanza there is no semi-colon after the filesystem name, which could produce unpredictable results, and could be a possible cause of your issue..

Example of your output:

/prd/data/data1
dev = /dev/pdwlv03
vfs = jfs
log = /dev/loglv05
mount = true
check = false
options = rw
account = false

And another stanza with the correct syntax..

/prd/data/data2:
dev = /dev/pdwlv04
vfs = jfs
log = /dev/loglv05
mount = true
check = false
options = rw
account = false

Also I can see the /dev/pdwlv04 is mounted on another mountpoint than is configured in the /etc/filesystems..

Output from mount:
/dev/pdwlv04 /pdw/data/data2 jfs Apr 06 02:25 rw,log=/dev/loglv05
Output from /etc/filesystems:
/prd/data/data2:

dev = /dev/pdwlv04
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #7  
Old April 6th, 2008
ManishMandvia's Avatar
ManishMandvia Offline
Junior Member
 
Join Date: February 2008
Posts: 14
Send a message via MSN to ManishMandvia
Re: Filesystem mounting problem

Its was typo error from my side.: is there in /etc/filesytems &

Output from mount:
/dev/pdwlv04 /prod/data/data2 jfs Apr 06 02:25 rw,log=/dev/loglv05
Output from /etc/filesystems:
/prod/data/data2:

dev = /dev/pdwlv04
__________________
Regards,
Manish Mandvia
AIX administrator
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #8  
Old April 6th, 2008
ManishMandvia's Avatar
ManishMandvia Offline
Junior Member
 
Join Date: February 2008
Posts: 14
Send a message via MSN to ManishMandvia
Re: Filesystem mounting problem

PDW typo error

Output from mount:
/dev/pdwlv04 /prd/data/data2 jfs Apr 06 02:25 rw,log=/dev/loglv05
Output from /etc/filesystems:
/prd/data/data2:

dev = /dev/pdwlv04
__________________
Regards,
Manish Mandvia
AIX administrator
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #9  
Old April 7th, 2008
ajay's Avatar
ajay Offline
Junior Member
 
Join Date: February 2008
Posts: 7
Re: Filesystem mounting problem

in the stanza below you should write 'true' instead of 'false' for the parameter "mount"

prd/data:
dev = /dev/lvppdwmy_app1
vfs = jfs
log = /dev/loglv02
mount = false
check = false
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply

Bookmarks

These are the 100 most searched terms
Search Cloud
0042-001 0042-001 nim 0513-001 the system resource controller daemon is not active 0513-001 the system resource controller daemon is not active. 0514-061 0514-061 cannot find a child device 0514-061 cannot find a child device. 0516-787 0516-787 extendlv 0516-787 extendlv: maximum allocation for logical volume 110000ac aa00e1f3 aio aix aix aio aix freeware aixif_arp_dup_addr b150f22a b181f22a b181fb53 ba010004 c1001020 d133c002 dacnone dcb47997 fcp_array_err6 fget_config gnu tar aix gsclvmd gtar aix hi yall hmc root password hmc vmware hscl05db ibm p6 ibm p6 520 libpopt aix libpopt.a libpopt.a(libpopt.so.0) is needed by rsync-2.6.2-1 migratelv mksysb navisphere agent nim server pseries pseriestech rsync aix sc_disk_err4 scan_error_chrp vio server websm xhost file ... powered by Simple Search Cloud


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0
Powered by vbWiki Pro 1.3 RC5. Copyright ©2006-2007, NuHit, LLC

vBulletin Skin developed by: vBStyles.com


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50