Nohup process getting killed after closing PUTTY session

I am running a process in nohup .

nohup getkeys.ksh 132 > 132.out &

When I close the putty terminal,The process is getting killed .

default_signal_handler called for signal no: 1

Is there a way to keep the process running even If I close the terminal

Try something like that .

Your & is misplaced .

nohup getkeys.ksh 132 &> 132.out

Try:

nohup getkeys.ksh 132 >132.out 2>&1 </dev/null &