- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to extend /tmp resource busy!!
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
07-21-2005 01:03 PM
07-21-2005 01:03 PM
How to extend /tmp resource busy!!
what are the steps to do this?
please i need some help!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-21-2005 01:22 PM
07-21-2005 01:22 PM
Re: How to extend /tmp resource busy!!
It can be done online only if you have a licensed product called Online JFS installed.
To find out wheather you have it or not do.
mydb:/>>swlist -l product|grep -i online
OnlineJFS B.11.11 Online features of the VxFS File System
If the same product is listed there then you have it otherwise not. If you have that then first find free space in vg00 by
#vgdisplay -v /dev/vg00|grep -e Free -e Size|grep PE
This will give you your PE Size & Free PEs. You can increase your file system by only by the PE's available free in your vg00.
Once found free space you can follow the procedure for extending.
#lvextend -L xxxx /dev/vg00/lvol_tmp
#fsadm -b yyyym /tmp
#bdf to confirm
Where xxxx in your new size in MB & YYYY in your new size in blocks.
If you have not this product then an alternative can be to create a new file system & then mount it at something like /tmp/oracle & then point your application tmp location here.
HTH,
Devender
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-21-2005 01:34 PM
07-21-2005 01:34 PM
Re: How to extend /tmp resource busy!!
You may need to take the system into single user mode.
Surely all processes on /tmp must be terminated including the oracle install.
fusers -cuk /tmp
That will likely shut down or disrupt a lot of applications on the server.
At that point you should be able to extend /tmp
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
07-21-2005 02:17 PM
07-21-2005 02:17 PM
Re: How to extend /tmp resource busy!!
fuser -cu /tmp
fuser -ku /tmp
to view and then kill process accessing /tmp.
Sudeesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-21-2005 03:10 PM
07-21-2005 03:10 PM
Re: How to extend /tmp resource busy!!
Now set the following in the environment:
TMPDIR=/u1/orainst.tmp
TEMPDIR=/u1/orainst.tmp
TMP_DIR=/u1/orainst.tmp
TEMP_DIR=/u1/orainst.tmp
OK - stop laughing all you folks who know the answer off hand ... :-) .
Why set all four above? Because it's ONE of those, but I'm nost sure which so out of laziness, I just set them all before I start the install. I actually think it's the first one, but my second guess is the second one. I don't think it's three or four, but what the heck - I don't want to restart an install b/c it's too slow, and I'm too lazy to go look it up when I know that if I do all four it's gonna redirect properly. :-)
Anyhoo - it'll redirect those temp files away from /tmp and put them in /u1/orainst.tmp .
Now, you don't have to fix the /tmp drive[mount point] to be any larger.
Hope this helps.