1834533 Members
2504 Online
110069 Solutions
New Discussion

Sort /var

 
Symon_1
Occasional Contributor

Sort /var

My application, in HPUX, uses "/var" for area of sort.
How to modify for another directory?

Thank´s.
Excuse me my bad english...
:(
4 REPLIES 4
Rick Garland
Honored Contributor

Re: Sort /var

What is the TMPDIR?
echo $TMPDIR

You can define/redefine this variable
export TMPDIR=/tmp

Symon_1
Occasional Contributor

Re: Sort /var

Ok. This paremeter not set...
I´ll Change.
Thanks again!
:)

HGN
Honored Contributor

Re: Sort /var

Hi

The application needs to be debugged to find the location which is pointing to /var and change it to a new mount /x.

Rgds

HGN
A. Clay Stephenson
Acclaimed Contributor

Re: Sort /var

Well-written UNIX applications respect the TMPDIR environment variable convention and default to /var/tmp if TMPDIR is not defined. Hopefully, your application is well-written.
If it ain't broke, I can fix that.