Skip to content

Instantly share code, notes, and snippets.

@DominicWatts
Last active May 22, 2023 13:44
Show Gist options
  • Save DominicWatts/e47b629f29458f560c1a7164fe3c5ce9 to your computer and use it in GitHub Desktop.
Save DominicWatts/e47b629f29458f560c1a7164fe3c5ce9 to your computer and use it in GitHub Desktop.
kill-magento-processes
kill -9 $(ps -aux | grep 'bin/magento' | grep -v grep | awk '{print $2}')
kill -9 $(ps -aux | grep 'bin/magento cron:run' | grep -v grep | awk '{print $2}')
@DominicWatts
Copy link
Author

Free up memory

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