+ Reply to Thread
Results 1 to 1 of 1
Thread: Clearing Semaphore on servers
-
Administrator
- Join Date
- Jan 2010
- Posts
- 65
Clearing Semaphore on servers
You can execute the below commands from shell to clear the semaphore on the server
ipcs | grep nobody | awk '{print $2}' > clear.txt
for i in `cat clear.txt`; do { ipcrm -s $i; }; done;


LinkBack URL
About LinkBacks



Reply With Quote