Skip to main content

EA-5662: apache is not start at boot

Comments

4 comments

  • kernow
    You may need to increase the open file limits, from the CLI check:
    cat /proc/sys/fs/file-max
    If the value is really low increase it, example:
    echo "1630634? > /proc/sys/fs/file-max
    If increasing the value works you need to make sure the value loads at the next reboot so add it to /etc/sysctl.conf # Maximum number of open files permitted fs.file-max = 1630634 To load the new values from the sysctl.conf file, run:
    sysctl -p /etc/sysctl.conf
    Then restart httpd
    0
  • urgido
    This is my current value cat /proc/sys/fs/file-max 6570126
    0
  • JacobPerkins
    Hi, We're adding in our ulimits back to the init scripts via case EA-5662. I hope we'll have this public tomorrow afternoon.
    0
  • urgido
    Thanks for your help and quick solution. Bless
    0

Please sign in to leave a comment.