Erron on LVE enter -1

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • rick
    Junior Member
    Forum Explorer
    • Mar 2021
    • 20

    #1

    Erron on LVE enter -1

    Seeing this in the apache/logs/error_log quite a bit:

    mod_hostinglimits:Error on LVE enter -1

    Any ideas?
  • iseletsk
    Senior Member
    • Dec 2017
    • 1199

    #2
    Check /var/log/messages

    Most likely you will have something like that:

    kernel: enter limit exced for lve 536 (used: 23/ limit: 20)
    It means that some users (id 536) site is limited/serving 503 errors to visitors, as it reached max number of connections
    This is not permanent, as load on the site drops/number of connections gets smaller -- it will serve content as before.

    To figure out which user it is, run:
    grep 536 /etc/passwd

    Comment

    • rick
      Junior Member
      Forum Explorer
      • Mar 2021
      • 20

      #3
      Thanks Igor. Wasn sure if the way it was logging in apache was normal, but Im assuming it is.

      Comment

      Working...