CentOs 不会增加内存限制

CentOs won't increase memory limits

我 VPS 将 CentOs 7 与 Cyber​​Panel 一起使用,当我尝试使用 composer install 时,我收到此错误

PHP Fatal error:  Allowed memory size of 1610612736 bytes exhausted (tried to allocate 268435456 bytes) in phar:///usr/bin/composer/src/Composer/DependencyResolver/Solver.php on line 223

Fatal error: Allowed memory size of 1610612736 bytes exhausted (tried to allocate 268435456 bytes) in phar:///usr/bin/composer/src/Composer/DependencyResolver/Solver.php on line 223

Check https://getcomposer.org/doc/articles/troubleshooting.md#memory-limit-errors for more info on how to handle out of memory errors.

截图

有什么想法吗?

使用以下命令为您的 PHP CLI SAPI 找到正确的 php.ini

php -i | grep 'ini'

使用文本编辑器将 memory_limit = -1 添加到此文件。

您还可以增加一个命令的内存限制:

COMPOSER_MEMORY_LIMIT=-1 composer update

...或...

php -d memory_limit=-1 /user/bin/composer update

已解决

我使用了这个命令,我的作曲家开始 运行

which composer

找到我的composer路径,然后

php -d memory_limit=-1 /user/bin/composer update