1834831 Members
2424 Online
110070 Solutions
New Discussion

adb

 
aruns_s
Frequent Advisor

adb

Hi Gurus,

In some of our servers, adb is getting invoked automatically causing large amount of cpu resources.As I can't see any cron job, would there be any system/hardware issues?
Thanks in advance
4 REPLIES 4
Dave Olker
Neighborhood Moderator

Re: adb

I've never heard of this. Adb is a debugger used to either tune the HP-UX kernel or debug applications, core dumps, etc. Are you able to track down the parent process of the running adb process and figure out who/what launched adb? Can you get the full syntax of the adb command? Is someone tuning a specific kernel tunable and that is eating up your CPUs?

Dave


I work at HPE
HPE Support Center offers support for your HPE services and products when and how you need it. Get started with HPE Support Center today.
[Any personal opinions expressed are mine, and not official statements on behalf of Hewlett Packard Enterprise]
Accept or Kudo
Michael Mike Reaser
Valued Contributor

Re: adb

What Dave said. Plus, when you see that adb has "taken over" your system, issue the command

ps -efx | grep adb | grep -v 'grep adb'

This should show you all of the instances of adb currently running, by whom, and if interactive from which pty/tty. At the very least, take the second column and search for those processes - those are the parent process(es) of your adb's. Keep searching for parent processes until you've determined who your "culprit" (or "culprits") is (or are).
There's no place like 127.0.0.1

HP-Server-Literate since 1979
Dennis Handly
Acclaimed Contributor

Re: adb

>adb is getting invoked automatically causing large amount of CPU resources.

Kill it, it doesn't deserve to live. :-)

>Dave: I've never heard of this.

You don't get out much? :-)

There are two other threads that mention adb being piggy:
http://forums.itrc.hp.com/service/forums/questionanswer.do?threadId=1208958
http://forums.itrc.hp.com/service/forums/questionanswer.do?threadId=1100051&admit=109447626+1228260104614+28353475

>Mike: ps -efx | grep adb | grep -v 'grep adb'

You can improve this by:
UNIX95=EXTENDED_PS ps -Hfx -C adb

And as mentioned by Mike and the other threads, find out the process tree, using above -H.
Dave Olker
Neighborhood Moderator

Re: adb

Dennis - I get out as little as humanly possible. :)


I work at HPE
HPE Support Center offers support for your HPE services and products when and how you need it. Get started with HPE Support Center today.
[Any personal opinions expressed are mine, and not official statements on behalf of Hewlett Packard Enterprise]
Accept or Kudo