While executing a shell script in ksh I'm getting the following error:
myscript.sh[13]: cannot fork - try again
I thought I ran out of processes, but ulimit -a returns this:
# ulimit -a
time(cpu-seconds) unlimited
file(blocks) unlimited
coredump(blocks) unlimited
data(kbytes) unlimited
stack(kbytes) unlimited
lockedmem(kbytes) unlimited
memory(kbytes) unlimited
nofiles(descriptors) 1000
processes unlimited
vmemory(kbytes) unlimited
This is my script, which sends an IPC message to another device through /dev/ipc/ch2:
#!/bin/sh
TIMEOUT=40
echo "Petting watchdog for $TIMEOUT seconds..."
c=1
while [[ $c -le $TIMEOUT ]]; do
# echo "Petting $c"
sleep 1
echo -n "\001\002\003\004" > /dev/ipc/ch2
(( c++ ))
done
echo "Done petting dog..."
What could it be?, I don't see why forking gets restricted suddenly.
echo at c=$c 1>&2inside the while loop. Does it crash before it gets to that, or after it gets to c=??. Good luck. – shellter Jan 4 at 21:00set -xon the top of the script to watch every command as executed. you could post results if they are helpful – Stefanos Kalantzis Jan 4 at 21:40