ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. Tags
    3. centos 5
    Log in to post
    • All categories
    • scottalanmillerS

      Virtualizing Your Cudatel Appliance

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion cudatel virtualization centos centos 5 freepbx wazo fusionpbx 3cx sangoma
      3
      3 Votes
      3 Posts
      1k Views
      NashBrydgesN

      @dustinb3403 said in Virtualizing Your Cudatel Appliance:

      @scottalanmiller said in Virtualizing Your Cudatel Appliance:

      Go ahead, download FreePBX and start playing with it. You could have installed it while reading this article!

      Any good installation guides here on ML?

      @JaredBusch has a great series of posts for FreePBX here.

      https://mangolassi.it/topic/11805/freepbx-13-setup-guide

    • scottalanmillerS

      CentOS 5 Repos

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion linux centos centos 5 rhel rhel 5 vultr
      12
      1 Votes
      12 Posts
      2k Views
      RamblingBipedR

      We ran into this issue last week with several legacy applications we soon hope to commit to the bone yard...

    • scottalanmillerS

      Installing Elastix 2.3 on CentOS 5

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion elastix elastix 2 elastix 2.3 elastix 2.4 centos centos 5 linux
      1
      2 Votes
      1 Posts
      2k Views
      No one has replied
    • JaredBuschJ

      Updating the Linux boot image before migrating from VMWare to Hyper-V

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion linux centos centos 5 centos 6 centos 7 initrd how to hyper-v migration vmware
      13
      7 Votes
      13 Posts
      37k Views
      AdamFA

      In case anyone else runs across this same issue, I got this resolved with a simple command:

      dracut --regenerate-all -f && grub2-mkconfig -o /boot/grub2/grub.cfg

      After doing this, everything booted up properly.

      I then installed hyperv-daemons, rebooted, and everything works great.

    • scottalanmillerS

      Reducing Memory Consumption in Elastix 2

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion elastix elastix 2.4 elastix 2.5 centos 5 asterisk
      6
      1 Votes
      6 Posts
      2k Views
      scottalanmillerS

      Long ago I had an article on this on my own blog but that is no longer up, so I am copying it here...

      https://web.archive.org/web/20150221062029/http://www.scottalanmiller.com/linux/2012/09/02/improving-elastix-memory-usage/

      The default installation of Elastix has more services running than are typically needed or desired on a PBX. These services eat far more memory that is necessary and can very easily be cleaned up to improve memory utilization.

      First we will stop a series of unnecessary services from starting at boot time (this will disable shared storage, local email handling, new hardware detection, etc. so be aware that this does stop some things but any service that proves to be needed is trivial to re-enable.)

      chkconfig nfslock off chkconfig cyrus-imapd off chkconfig iscsi off chkconfig iscsid off chkconfig netfs off chkconfig kudzu off

      Further, if your system is like mine you likely use the web server very lightly but will find that the default configuration of Apache is set to spawn, by default, eight processes. This is far too many for a normal deployment. Each process uses memory. For an average deployment of Elastix, three is more than enough. You need only raise this number if web performance suffers. This will not impact telephony performance regardless.

      In the file /etc/httpd/conf/httpd.conf we need to edit the section:

      <IfModule prefork.c> StartServers 2 MinSpareServers 2 MaxSpareServers 8 ServerLimit 256 MaxClients 256 MaxRequestsPerChild 4000 </IfModule>

      to something more like this:

      <IfModule prefork.c> StartServers 3 MinSpareServers 2 MaxSpareServers 10 ServerLimit 256 MaxClients 256 MaxRequestsPerChild 4000 </IfModule>

      You can wait for the system to reboot or restart Apache manually:

      service httpd restart

      And finally, to control swapping activity on the box, assuming that you want to avoid swapping when unnecessary, which I do because my box is virtualized, simply add this line on to /etc/sysctl.conf:

      vm.swappiness = 10

      You’ll want to test that number carefully. A setting of “10” is quite standard for virtualized systems. The default is “60”. For a physical deployment the higher value is likely better as it allows CentOS to make better decisions about how to utilize memory for maximum throughput. But on a virtualized system we really want to avoid, typically, any additional contention at the storage IO layer.
      [Testing on Elastix 2.0 and 2.3]

    • LakshmanaL

      Link for Centos 5.7

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion linux centos 5 centos
      4
      0 Votes
      4 Posts
      1k Views
      Reid CooperR

      I agree, this is a case where downloading the fully up to date version that CentOS provides is what makes sense. The overall version is 5. The .7 or .11 is just the patch level.

    • scottalanmillerS

      MySQL 5 InnoDB to MariaDB Migration

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion centos 5 linux mysql mariadb database windows server 2012 r2
      13
      3 Votes
      13 Posts
      4k Views
      scottalanmillerS

      Me too, that sounds good now that you say it.

      I am staying with my dad too, here in the land of pizza, subs and fish frys.

    • 1 / 1