Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

General Notes

...

    1. Install Fedora 19 or CentOS 6.6 minimal install.
    2. Only minimum installation is necessary, in fact this is preferred. All packages sipXecs needs will be installed automatically
    3. Be sure to run yum update after installing your OS and before installing sipXecs to ensure the latest RPMs are install but also avoid conflict errors when new packages are getting installed.
    4. CentOS 6 is the preferred distribution because has received the most testing coverage.
    5. 64 bit version of the distribution as it's preferred by MongoDB: the embedded distributed database package.
      NOTES - On CentOS
      1. Minimal install - be sure to click on "Network Connectivity" button on same screen where you assign the host name.  If you don't - you will have to manually configure your Ethernet Interface file!
      2. On first boot - you may need to edit your /etc/sysconfig/network-scripts/YourNICCard   Change ONBOOT="no" to ONBOOT="yes"

      3. Yum install wget to install the wget program required to download your RPM files. 

3. Increase Max Number of ulimit open files and max user processes for MongoDB

    1. edit /etc/sysctl.conf to add fs.file-max = 65536 line
    2. edit /etc/security/limits.conf to add the following block of text:
Code Block
*          soft     nproc          65535
*          hard     nproc          65535
*          soft     nofile         65535
*          hard     nofile         65535

...