Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
svcadm disable rpc/bind
svcadm disable rpc/meta
svcadm enable system/mdmonitor

Otherwise,

Code Block
svcs -a | grep "rpc/bind:";svcs -a | grep "rpc/meta:";svcs -a | grep "system/mdmonitor:"
disabled       Jun_17   svc:/network/rpc/bind:default
uninitialized  Jun_17   svc:/network/rpc/meta:default
online         Jun_17   svc:/system/mdmonitor:default

Optionally verify your changes. If you are using a newer version of grep via GTools,

Code Block
languagebash
svcs -a | grep 'rpc/bind:\|rpc/meta:\|system/mdmonitor:'
disabled       disabled       Jun_17  17   svc:/network/rpc/bind:default
online         online         Jun_17  17   svc:/system/mdmonitor:default
uninitialized uninitialized  Jun_17  17   svc:/network/rpc/meta:default

...