Versions Compared

Key

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

...

  • How do I reset/clear all sipx configurations and start from Scratch

4.6   From the Linux command line,  run "/etc/init.d/sipxconfig db drop", "mongodb-repair --obliterate" and then "sipxecs-setup --reset-all" 

With sipXecs 4.6 update 7, the following changes are required -  the "mondodb-repair --obliterate" is replaced with "mongodb-admin --host_port host.domain.name:27017 OBLITERATE"

4.6 update 10, the following is confirm from an engineering resource (Thanks George!):

      • service sipxecs stop
      • ps -ef | grep sipx
      • Kill all processes owned by sipx that are still running - cfengine as one example
      • kill -9 above processes identified
      • rm -rf /var/lib/mongodb/*
      • sipxecs-setup --reset-all

 

  • What is the Arbiter?

The Arbiter is a feature of Mongodb.  In the event that your master server is lost, Mongodb will vote for a new master server.  If there is only one server, or an even amount of servers left, then the Arbiter functions as a tie-breaker so one server can take over as the master database for the system.  A detailed description can be found here.

...