Last active
January 10, 2025 02:47
-
-
Save jasperf/77a9ac4721595c666c7d3fd68bf6572f to your computer and use it in GitHub Desktop.
wp media regenerate for adding missing image formats & limiting virtual memory and cpu core usage #wpcli #bash #imageregeneration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# use wp cli to regenerate missing image formats while limiting RAM and CPU usage so server does not die on you during the ride | |
# check whether virtual memory has been set for this bash session | |
ulimit -v 2097152 | |
# check whether virtual memory has been set for this bash session | |
ulimit -v | |
# install cpu limit application on debian / ubuntu | |
sudo apt install cpulimit | |
# run command to regenerate missing thumbnails with virtual memory and only half a cpu core | |
cpulimit -l 50 -- wp media regenerate --yes --only-missing |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If issues arise and you cannot stop wp cli, log out and in , check for wp
Then use
kill -9 process-id
. Process ID is the number in the second columnalso had
chmod
issues so had tosudo chown -R www-data:www-data /var/www/site.com/public_html/ sudo find /var/www/site.com/public_html/ -type d -exec chmod g+s {} \;
for user
ubuntu
in groupwww-data
to be able to run command to generate the thumbnails without running intochmod
issues