• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login

    Increase PHP Memory limit

    Scheduled Pinned Locked Moved Solved
    FOG Problems
    4
    11
    1.4k
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • S
      Sebastian Roth Moderator
      last edited by Sebastian Roth

      @fry_p Quite often there are a couple of PHP inis. See if you can find them all using this command:
      find /etc -type f -exec grep "memory_limit" {} /dev/null \;

      Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

      Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

      1 Reply Last reply Reply Quote 0
      • EduardoTSeoaneE
        EduardoTSeoane
        last edited by

        this is in /etc/php-fpm/www.conf
        the parameter is php_admin_value[memory_limit] =

        1 Reply Last reply Reply Quote 0
        • fry_pF
          fry_p Moderator
          last edited by

          @EduardoTSeoane and @Sebastian-Roth you are both correct as always! I am running into the same error, but it is reading my new memory limit of 1024M. In particular, I am interested in the user tracking report. I am wondering if my table is much too large for the report to handle. Is there a way I may wipe the table up until 5/24/2018, or a year before today? I can open another thread as this is not particularly a fog issue.

          Like open source community computing? Why not do it for a good cause?
          Use your computer/server for humanitarian projects when it is idle!
          https://join.worldcommunitygrid.org?recruiterId=1026912

          1 Reply Last reply Reply Quote 0
          • EduardoTSeoaneE
            EduardoTSeoane
            last edited by Sebastian Roth

            @fry_p I use 1536M to list 15.225 pc’s.

            Little question,
            Have you restart php-fpm and httpd services?
            I forget to do it when i did the change and…

            Understand, isn’t it?

            1 Reply Last reply Reply Quote 1
            • fry_pF
              fry_p Moderator
              last edited by fry_p

              @EduardoTSeoane I have restarted both services and also restarted the entire server. Since it is reading the new memory limit, I think it is trying to read too much data since we have had FOG for a long time. Years of user data that predates me at this job. I will try another restart of services though.

              EDIT: Same issue after restarting services again.

              Like open source community computing? Why not do it for a good cause?
              Use your computer/server for humanitarian projects when it is idle!
              https://join.worldcommunitygrid.org?recruiterId=1026912

              george1421G 1 Reply Last reply Reply Quote 0
              • george1421G
                george1421 Moderator @fry_p
                last edited by george1421

                @fry_p What you need to change is php-fpm memory limit. Its in a file called www.conf. Search the /etc directory with find /etc -name www.conf The location changes based on what version of php-fpm is installed.

                Inside that file there is a line

                php_admin_value[memory_limit] 
                

                The default may be 128 or 256 depending on the version of fog that is installed. Based on the error, it might be set to 256M. I would start out by being conservative and update it to 384M. Save the config file and then restart php-fpm. Depending on the host OS the command may be systemctl restart php-fpm or just restart the FOG server.

                Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG!

                1 Reply Last reply Reply Quote 0
                • S
                  Sebastian Roth Moderator
                  last edited by Sebastian Roth

                  @fry_p said in Increase PHP Memory limit:

                  I am wondering if my table is much too large for the report to handle. Is there a way I may wipe the table up until 5/24/2018, or a year before today?

                  I am sure we can help you with this. Let’s try to find out how many entries you have in that table and then clean it up a bit.

                  shell> mysql -u root -p
                  Enter password:
                  ...
                  mysql> use fog;
                  ...
                  mysql> SELECT COUNT(*) FROM userTracking;
                  ...
                  mysql> SELECT COUNT(*) FROM userTracking WHERE utDateTime < '2018-05-25';
                  ...
                  

                  The last two queries should give you the numbers of all entries as well as the entries before 5/25/2018. Just to get an idea before we wipe it all. You may want to have a look at some of the entries as well. The following query should give you the last ten entries (seen from the beginning) up until the 24th of May 2018 in reverse order (the very latest of that day at first):

                  SELECT * FROM userTracking WHERE utDateTime < '2018-05-25' ORDER BY utDateTime DESC LIMIT 10;
                  

                  Now if you are sure you want to delete those older entries you can go ahead an use DELETE instead of SELECT:

                  DELETE FROM userTracking WHERE utDateTime < '2018-05-25';
                  

                  Use the DELETE with caution! Make sure the prior SELECT query actually shows the entries you want to get rid of and not other ones.

                  Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

                  Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

                  1 Reply Last reply Reply Quote 0
                  • fry_pF
                    fry_p Moderator
                    last edited by

                    @george1421 I found this when I initially did the search for the ini’s. I increased the amount and it is reading the new amount in the error log.

                    @Sebastian-Roth I am finding that my entries in this table don’t actually date back that far.

                    Yet my count for

                    SELECT COUNT (*) FROM userTracking;
                    

                    Returns 217,893 entries.

                    The furthest back i can find is roughly January 30th 2019. Do you guys think that 217,893 is still too high? I can maybe try to prune anything older than two months as I really don’t need anything older.

                    By the way, here is the error I am getting.

                    /var/log/php-fpm/www-error.log
                    
                    [26-May-2019 05:53:59 America/New_York] PHP Fatal error: Allowed memory size of 1073741824 bytes exhausted (tried to allocate 8192 bytes) in /var/www/html/fog/lib/db/pdodb.class.php on line 622
                    

                    I set the memory to 1 GB for troubleshooting purposes only. I find it odd that it is only trying to use 8192 bytes but I still get a white screen when I am running the report. Specifically I am putting in myself as the username and my desktop as the PC.

                    Like open source community computing? Why not do it for a good cause?
                    Use your computer/server for humanitarian projects when it is idle!
                    https://join.worldcommunitygrid.org?recruiterId=1026912

                    1 Reply Last reply Reply Quote 0
                    • S
                      Sebastian Roth Moderator
                      last edited by Sebastian Roth

                      @fry_p said in Increase PHP Memory limit:

                      I find it odd that it is only trying to use 8192 bytes

                      The error message might be a bit misleading. What this means is that it tried to allocate 8192 bytes beyond* the limit you specified in the ini file and there stops with a fatal error.

                      We added a search/pre-filter interface to the reporting for 1.5.6 (thanks to @Fernando-Gietz!). I had forgotten about this but now I wonder if you still get the memory exhaustion even if you try searching for a particular host oder username?

                      Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

                      Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

                      1 Reply Last reply Reply Quote 0
                      • EduardoTSeoaneE
                        EduardoTSeoane
                        last edited by

                        the php dont request the needed memory, it request for the next block. So:
                        When i has 256M it request another ±20M.
                        Then I increase to 512M. Then the system claims for another 20M.
                        Then I increase to 1024M and then the system claims for another 20M

                        I repeat the actions to accure memory size to 1536M.

                        If it’s necesary to increase the memory a lot then maybe it’s necesary increase the TimeOut and ProxyTimeout httpd.conf paramenters.

                        1 Reply Last reply Reply Quote 0
                        • 1 / 1
                        • First post
                          Last post

                        162

                        Online

                        12.0k

                        Users

                        17.3k

                        Topics

                        155.2k

                        Posts
                        Copyright © 2012-2024 FOG Project