You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[ari@ink:~/Projects ] $ vendor/bin/terminus --site=ari-usd2 --env=dev site clear-cache
Warning: file_get_contents(/Users/ari/Projects/vendor/pantheon-systems/terminus/config/constants.yml): failed to open stream: Too many open files in /Users/ari/Projects/vendor/pantheon-systems/terminus/php/Terminus/Configurator.php on line 145
Warning: Invalid argument supplied for foreach() in /Users/ari/Projects/vendor/pantheon-systems/terminus/php/Terminus/Configurator.php on line 147
Warning: include(/Users/ari/Projects/vendor/pantheon-systems/terminus/config/spec.php): failed to open stream: Too many open files in /Users/ari/Projects/vendor/pantheon-systems/terminus/php/Terminus/Configurator.php on line 24
Warning: include(): Failed opening '/Users/ari/Projects/vendor/pantheon-systems/terminus/config/spec.php' for inclusion (include_path='.:') in /Users/ari/Projects/vendor/pantheon-systems/terminus/php/Terminus/Configurator.php on line 24
Warning: Invalid argument supplied for foreach() in /Users/ari/Projects/vendor/pantheon-systems/terminus/php/Terminus/Configurator.php on line 34
Warning: Invalid argument supplied for foreach() in /Users/ari/Projects/vendor/pantheon-systems/terminus/php/Terminus/Configurator.php on line 83
Warning: fopen(php://stderr): failed to open stream: operation failed in /Users/ari/Projects/vendor/katzgrau/klogger/src/Logger.php on line 167
[2016-03-09 19:28:26] [error] The file could not be opened. Check permissions.
This should be optimized. @ari-gold can't be the only one getting the error. I can reproduce it if I use ulimit -n 233 (my usual limit is 1597).
Current workaround:ulimit -n $((2 * $(ulimit -n)))
If you get an error like bash: ulimit: open files: cannot modify limit: Operation not permitted
Then use ulimit -n, then where 2*ulimit -n = x, ulimit -n x. Repeat until it works.
The text was updated successfully, but these errors were encountered:
This should be optimized. @ari-gold can't be the only one getting the error. I can reproduce it if I use
ulimit -n 233
(my usual limit is 1597).Current workaround:
ulimit -n $((2 * $(ulimit -n)))
If you get an error like
bash: ulimit: open files: cannot modify limit: Operation not permitted
Then use
ulimit -n
, then where 2*ulimit -n
= x,ulimit -n x
. Repeat until it works.The text was updated successfully, but these errors were encountered: