a process that never stop


 
Thread Tools Search this Thread
Operating Systems AIX a process that never stop
# 1  
Old 01-27-2007
a process that never stop

Dears all

i have an AIX box in which i am facing a problem with a process as below:

/usr/dt/bin/dtexec -open 0 -ttprocid

and each time i am killing this process with "kill -9" then it run again after a while.

any ideas or solutions will be appreciated.
# 2  
Old 01-27-2007
The same process, or a different PID each time? What is the parent process?
# 3  
Old 01-27-2007
you should change the entry in the inittab-file...
probably that entry is stating now "RESPAWN". It will respawn every time you kill the process...
# 4  
Old 01-28-2007
Dears

it is the same process respawned again with a different process ID with the same PPID which is for "/usr/dt/bin/dtsession" when greping for that PPID.

also i searched the inittab but i could not find anf entry for this PID or even it's PPID.

please advice.
# 5  
Old 01-28-2007
It's part of a CDE desktop. Log out all users using CDE and login with ssh/telnet and it won't be there. Next you need to find out who's it is, does everyone get the process, or is it specific to a single user.
# 6  
Old 01-29-2007
First off why do you want to kill the CDE? All this is is an XWindows desktop and unless you have users with an X station or an X emulator such as Hummingbird Exceed running on a PC no one will be able to use it. Also as I do not know what form of RS6000 this is I can only surmise that the session you are seeing is the console running on an LFT (Low Function Terminal) plugged into a graphics card.

I would strongly advise not to kill it or as someone has suggested not take the entry out of the inittab as this will cause all sorts of problems when you re-boot!
# 7  
Old 01-29-2007
this process seems to efftect other running processes and they can not be started unless i kill that CDE-related process. this process is just related to the root user.

should i logoff any logins from the console terminal??

thanks
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Red Hat

Can't stop/restart postfix - pid associated with another process

This issue could happen to any other service but in this case its commssioning Postfix - it seems i can't stop postfix as the PID relates to another service - i've delete the 'master.lock' but to no available - any ideas, memeory commands etc ? thanks in advance ps. the serve is in Production so... (2 Replies)
Discussion started by: stevie_velvet
2 Replies

2. UNIX for Dummies Questions & Answers

How to stop debug in the mid of process?

Hi Gurus, I am debugging a script. it loops filelist. since the list a very long. when debugging, I only can see the last a few lines. is there any way to stop debuger in the mid of process. the command I used for debugging is: ksh -x scriptName Thanks in advance (7 Replies)
Discussion started by: ken6503
7 Replies

3. Shell Programming and Scripting

Stop and start a process every X hours

Hi, I have a parallelized Mathematica program that spans across 8 MathKernels processes running at 100% and one MathKernel (highlighted in blue) running at < 10% that controls the other 8. They look like this on the cluster: https://www.unix.com/attachment.php?attachmentid=5111&stc=1&d=1381245618... (2 Replies)
Discussion started by: giovform
2 Replies

4. Shell Programming and Scripting

How to stop the process in shell scripting?

Hi all, I have tried the below code to execute. #! /bin/bash date1=`date -d "today 08:00:00" +%s` date2=`date -d "today 08:01:00" +%s` path=/home/user01/red/IDC/sample cd $path java Cspsamp 111.19.5.172 7025 rd1 rd1 "5022=Query|5026=109378|4=627|5=E:VD|5042=$date1|5049=$date2"... (5 Replies)
Discussion started by: aish11
5 Replies

5. UNIX for Dummies Questions & Answers

Stop the process

I have the following log file running since yesterday and its consuming so much of the disk space. -rw-rw-r-- 1 dev dba 4543237120 Nov 10 09:00 load_run_file1_0.1111091224.lg How do i kill this process. I don't have any idea of stopping this. Any help would be really appreciated. ... (3 Replies)
Discussion started by: bobby1015
3 Replies

6. Shell Programming and Scripting

Process running? Stop it

I have this "process keepalive" script: #!/bin/bash PIDFILE=/tmp/php.pid PHPSCRIPT=/home/www/mydomain.com/subdomains/www/parser.php echo 'Checking php process from PID file' if ; then PID=`cat $PIDFILE` if ps ax | grep -v grep | grep $PID > /dev/null then echo "php process still... (4 Replies)
Discussion started by: LukasB
4 Replies

7. Shell Programming and Scripting

how to stop the process that is running continously

Hi there, I have written a script to check daily process, each script is in a different directory. Now the first process is running fine, when it goes to the next directory the process doesn't executes. cd result/logs ref=month_1888.log echo $ref>> $logfile cd /max/tot/first... (3 Replies)
Discussion started by: NehaKrish
3 Replies

8. Shell Programming and Scripting

Stop / kill the process individually

Hi , I have a situation, where I have 10 indivudal processess started by similar instance.I say similar instance because each of them being started as a new thread: Say I've following unix process running process1_ADAP process2_ADAP process3_ADAP Current scenario: Now I have SHUTDOWN... (5 Replies)
Discussion started by: braindrain
5 Replies
Login or Register to Ask a Question