Quantcast
Channel: PerkinElmer Informatics Support Forum
Viewing all articles
Browse latest Browse all 469

Redirecting columbus and acapella temp data

$
0
0

The changes suggested below will only become active once the Columbus service is restarted.

[columbus@columbus]$ sudo /etc/init.d/columbus restart



=========================================
acapella user
=========================================

Acapella uses the value of environment variable TMP. Only if this does not exist, the /tmp directory is used. You can specify the TMP environment variable in the shell script which starts Acapella. For example, modify...

/usr/local/PerkinElmerCTG/Acapella*/bin/acapella.sh

...and add the TMP setting near the end of the file, before the "exec $BINDIR/acapella "$@"" line:

...
export TMP=/path/to/new/tmp/folder
exec $BINDIR/acapella "$@"
...

Please make sure the specified path exists and is writable for the user "acapella".


=========================================
columbus user
=========================================

Data bound for /tmp can be redirected by placing the following lines at the top of the /etc/init.d/columbus script...

# redirect tmp data
TMPDIR=/path/to/new/tmp/folder
TMP=$TMPDIR
TEMP=$TMPDIR
export TMPDIR TMP TEMP


Please make sure the specified path exists and is writable for the user "columbus".


Viewing all articles
Browse latest Browse all 469

Trending Articles