How I can disable snmpd on AIX 5.3,Please help me?Thanks
Slawek
Printable View
How I can disable snmpd on AIX 5.3,Please help me?Thanks
Slawek
On Oct 9, 7:40 am, "Slawomir Ksiazek" <s...@nospam.pl> wrote:[color=blue]
> How I can disable snmpd on AIX 5.3,Please help me?Thanks
>
> Slawek[/color]
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.googlegroups.com...[color=blue]
> On Oct 9, 7:40 am, "Slawomir Ksiazek" <s...@nospam.pl> wrote:[color=green]
>> How I can disable snmpd on AIX 5.3,Please help me?Thanks
>>
>> Slawek[/color]
>
> 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
>[/color]
thanks for info
Slawek
On Oct 8, 8:40 pm, "Slawomir Ksiazek" <s...@nospam.pl> wrote:
....[color=blue]
> How I can disable snmpd on AIX 5.3,Please help me?Thanks[/color]
....
/usr/sbin/chrctcp -S -d snmpd
hth
Hajo