Skip to content

Instantly share code, notes, and snippets.

@RidaRidss
Last active October 10, 2017 08:10
Show Gist options
  • Save RidaRidss/2cbfd302e690cdaf6e9feca36ced89b2 to your computer and use it in GitHub Desktop.
Save RidaRidss/2cbfd302e690cdaf6e9feca36ced89b2 to your computer and use it in GitHub Desktop.

If You got an error any time while starting the server ERROR A non-recoverable condition has triggered. Watchman needs your help!" , use the below process , Run below 3 commands

echo 256 | sudo tee -a /proc/sys/fs/inotify/max_user_instances
echo 32768 | sudo tee -a /proc/sys/fs/inotify/max_queued_events
echo 65536 | sudo tee -a /proc/sys/fs/inotify/max_user_watches
watchman shutdown-server


            OR
            
            
echo 999999 | sudo tee -a /proc/sys/fs/inotify/max_user_watches  && echo 999999 | sudo tee -a  /proc/sys/fs/inotify/max_queued_events && echo 999999 | sudo tee  -a /proc/sys/fs/inotify/max_user_instances && watchman  shutdown-server
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment