Java -Dupdateagent -- what is this?


 
Thread Tools Search this Thread
Top Forums Programming Java -Dupdateagent -- what is this?
# 1  
Old 05-29-2014
Java -Dupdateagent -- what is this?

I noticed this process running on one of our servers, any ideas what it's doing? It's obviously an update agent, but its running on some of our servers and not others (all standard build)

Code:
root      6594     1  0 May28 ?        00:00:03 java -Dupdateagent -Djava.endorsed.dirs=. -Dsun.net.inetaddr.ttl=60 -Dsun.net.inetaddr.ne

I've googled for "Dupdateagent" but it hardly comes back with anything. Any suggestions most welcome.
# 2  
Old 05-29-2014
Can you run below command and post the output:
Code:
$JAVA_HOME/bin/jps | grep 6594

OR
Code:
jps | grep 6594

# 3  
Old 05-30-2014
Hi, thanks for your reply. The PID has changed, but i've re-run it as follows:

Code:
# ps -ef | grep -i update
root      6502     1  0 May28 ?        00:00:08 java -Dupdateagent -Djava.endorsed.dirs=. -Dsun.net.inetaddr.ttl=60 -Dsun.net.inetaddr.ne

Code:
# /usr/java/jdk1.6.0_45/bin/jps | grep 6502
6502 gravitixagent

# 4  
Old 05-30-2014
So I guess that answers your question.
# 5  
Old 06-02-2014
thank you for your help! I wasnt aware of what gravitixagent, but it turns out it our system patching tool.
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question