Skip to content

Instantly share code, notes, and snippets.

@jasperf
Last active January 10, 2025 02:47
Show Gist options
  • Save jasperf/77a9ac4721595c666c7d3fd68bf6572f to your computer and use it in GitHub Desktop.
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
# 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
@jasperf
Copy link
Author

jasperf commented Jan 10, 2025

If issues arise and you cannot stop wp cli, log out and in , check for wp

ps aux |grep wp

Then use kill -9 process-id. Process ID is the number in the second column

also had chmod issues so had to

sudo 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 group www-data to be able to run command to generate the thumbnails without running into chmod issues

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment