This is a discussion on Disable snmpd within the AIX Operating System forums, part of the Unix Operating Systems category; --> How I can disable snmpd on AIX 5.3,Please help me?Thanks Slawek...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| |||
| On Oct 9, 7:40 am, "Slawomir Ksiazek" <s...@nospam.pl> wrote: > How I can disable snmpd on AIX 5.3,Please help me?Thanks > > Slawek well, there's a number of things you can do; why do you want it stopped? It does sit there chewing up CPU. the most obvious way is to just do a "ps" and kill all the processes ps -ef | egrep "mib|snm" | grep -v grep root 331886 102556 0 20 Sep - 3:35 /usr/sbin/snmpd root 503810 102556 0 20 Sep - 0:04 /usr/sbin/snmpmibd root 516108 102556 0 20 Sep - 2:47 /usr/sbin/hostmibd root 524298 102556 0 20 Sep - 0:07 /usr/sbin/aixmibd if you want to prevent these from starting: egrep "mib|snm" /etc/rc.tcpip start /usr/sbin/snmpd "$src_running" # Start up the hostmibd daemon start /usr/sbin/hostmibd "$src_running" # Start up the snmpmibd daemon start /usr/sbin/snmpmibd "$src_running" # Start up the aixmibd daemon start /usr/sbin/aixmibd "$src_running" just comment out the lines like this with "start". You could always go ahead and remove SNMP by uninstalling bos.net.tcp.client but that's a bit unnecessary and impractical |
| |||
| Uzytkownik "Henry" <snogfest_hosebeast@yahoo.com> napisal w wiadomosci news:1191871886.179223.227290@o80g2000hse.googlegr oups.com... > On Oct 9, 7:40 am, "Slawomir Ksiazek" <s...@nospam.pl> wrote: >> How I can disable snmpd on AIX 5.3,Please help me?Thanks >> >> Slawek > > well, there's a number of things you can do; why do you want it > stopped? It does sit there chewing up CPU. > > the most obvious way is to just do a "ps" and kill all the processes > > ps -ef | egrep "mib|snm" | grep -v grep > root 331886 102556 0 20 Sep - 3:35 /usr/sbin/snmpd > root 503810 102556 0 20 Sep - 0:04 /usr/sbin/snmpmibd > root 516108 102556 0 20 Sep - 2:47 /usr/sbin/hostmibd > root 524298 102556 0 20 Sep - 0:07 /usr/sbin/aixmibd > > if you want to prevent these from starting: > > egrep "mib|snm" /etc/rc.tcpip > start /usr/sbin/snmpd "$src_running" > # Start up the hostmibd daemon > start /usr/sbin/hostmibd "$src_running" > # Start up the snmpmibd daemon > start /usr/sbin/snmpmibd "$src_running" > # Start up the aixmibd daemon > start /usr/sbin/aixmibd "$src_running" > > > just comment out the lines like this with "start". > You could always go ahead and remove SNMP by uninstalling > bos.net.tcp.client but that's a bit unnecessary and impractical > thanks for info Slawek |
| Thread Tools | |
| Display Modes | |
|
|