- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- mount problem while enableing largefiles support i...
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
05-29-2003 08:01 AM
05-29-2003 08:01 AM
mount problem while enableing largefiles support in HP-UX 11.00
I'm trying to enable largefiles support in an existing file system without any success.
I've tried the fsadm option
/usr/sbin/fsadm -F -o options vxfs /dev/vg00/lvol4 /tmp (but it didn't help.
init s
I managed to umount the /tmp and with the "sam"
utility I enabled the largefiles support.
remounted the /tmp and reboot.
Once the machine was up I was able to see the largefiles option in the fstab, however the /tmp mount has gone, and the new /tmp appears under / .
What did I do wrong?
Please help,
Thanks,
Aviad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2003 08:05 AM
05-29-2003 08:05 AM
Re: mount problem while enableing largefiles support in HP-UX 11.00
# /dev/vg01/oracle6 /oracle6 vxfs rw,suid,largefiles,delaylog,datainlog 0 2
I have it commented.
The fs must have either been created with newfs -F vxfs -o largefile /dev/vg00/....
or with the fsadm command you ran.
check /etc/fstab
Note that for 11.11 the largefiles directive is not permitted in /etc/fstab
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2003 08:08 AM
05-29-2003 08:08 AM
Re: mount problem while enableing largefiles support in HP-UX 11.00
If you have Online-JFS installed, you would use the command
fsadm -o largefiles /tmp
If you don't have online-JFS, then it is advisable to boot the system into single user mode as there is little chance that you can unmount /tmp in multi-user mode. Once /tmp is unmounted, in single user mode, do
#mount /usr
#mount /var
#/usr/sbin/fsadm -F vxfs -o largefiles /dev/vg00/lvol4
#mount /tmp
#init 3
In your case, it is most probably that /tmp (directly under /) is busy so the logical volume is not being able to get mounted.
Try mounting it manually
#mount /dev/vg00/lvol4 /tmp
If it says it's "busy", then you will have to reboot the system to make things clean.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2003 08:10 AM
05-29-2003 08:10 AM
Re: mount problem while enableing largefiles support in HP-UX 11.00
fsadm -F vxfs -o largefile /mountpoint and change it in fstab by adding largefile
To verify use mkfs -F vxfs -m /dev/vgnn/lvolnn
-USA..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2003 08:14 AM
05-29-2003 08:14 AM
Re: mount problem while enableing largefiles support in HP-UX 11.00
/dev/vg00/ifasvol /ifas vxfs delaylog,nodatainlog,largefiles,rw,suid 0 2
try
/usr/sbin/fsadm -F vxfs -o largefiles /dev/vg00/lvol4 /tmp
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2003 08:27 AM
05-29-2003 08:27 AM
Re: mount problem while enableing largefiles support in HP-UX 11.00
dev/vg00/lvol4 /tmp vxfs rw,suid,largefiles,delaylog,datainlog 0 2
But still after i do mount | grep /tmp
I don't see the /tmp.
It seems like the fstab cannot mount /tmp after the change i've made.
Thanks,
Aviad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2003 08:29 AM
05-29-2003 08:29 AM
Re: mount problem while enableing largefiles support in HP-UX 11.00
Please post the message you get when you do
#mount /tmp
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2003 08:44 AM
05-29-2003 08:44 AM
Re: mount problem while enableing largefiles support in HP-UX 11.00
I notice no one has quetioned just *why* you need largefiles enabled in /tmp.
IMHO, this is not a good place to be creating +2Gb files.
We only size out /tmp @ 256Mb.
You should really rethink just why someone/something *needs* to be creating largefiles in /tmp.
If an app needs to store largefiles in a "temp" dir then have the user set the TMPDIR variable pointing to an appropriate location outside of vg00.
My 2 cents,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2003 09:19 AM
05-29-2003 09:19 AM
Re: mount problem while enableing largefiles support in HP-UX 11.00
I have that large a /tmp because of an application that keeps active traces in tmp. otherwise I would use a
256 MB or there abouts.
Tim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2003 09:22 AM
05-29-2003 09:22 AM
Re: mount problem while enableing largefiles support in HP-UX 11.00
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2003 11:08 AM
05-29-2003 11:08 AM
Re: mount problem while enableing largefiles support in HP-UX 11.00
This is a QA machine, and i'm testing the largefiles support before i'll enable this options on production server.
mount -a
mount: /dev/vg00/lvol6 is already mounted on /var
mount: /dev/vg00/lvol5 is already mounted on /usr
vxfs mount: /dev/vg00/lvol4 is already mounted, /tmp is busy,
or allowable number of mount points exceeded
mount: /dev/vg00/lvol1 is already mounted on /stand
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2003 11:14 AM
05-29-2003 11:14 AM
Re: mount problem while enableing largefiles support in HP-UX 11.00
This means /tmp (directly under /) directory is busy. Make sure you are not in /tmp directory.
Verify if largefiles have been enabled on lvol4 before you reboot the box.
#mkfs -m /dev/vg00/lvol4
Observe the output for largefiles. If it indicates nolargefiles, then use
#fsadm -F vxfs -o largefiles /dev/vg00/lvol4
Use fuser to find out what processes are accessing /tmp directory.
fuser /tmp
Look at the processes. If you can kill them, do so, else you may have to reboot the box. Once fuser returns nothing, try doing mount -a again.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2003 11:46 AM
05-29-2003 11:46 AM
Re: mount problem while enableing largefiles support in HP-UX 11.00
The output of the mkfs -m command observes nolargefiles.
However, when i use fsadm -F vxfs -o largefiles /dev/vg00/lvol4 I get "fsadm -F vxfs -o largefiles /dev/vg00/lvol4 "
Thanks,
Aviad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2003 11:52 AM
05-29-2003 11:52 AM
Re: mount problem while enableing largefiles support in HP-UX 11.00
fsadm -F vxfs -o largefiles /dev/vg00/rlvol4.
Haven't had evening coffee yet.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2003 12:04 PM
05-29-2003 12:04 PM
Re: mount problem while enableing largefiles support in HP-UX 11.00
It works !
Thanks a lot.
Aviad