docker部署的环境中执行php webman.phar 提示内存溢出,但上传源码执行没问题,memory_limit已设置是2048M,这个是为啥,我配做错误了吗?
Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 1014728015 bytes) in Unknown on line 0
打包配置
return [
'enable' => true,
'phar_file_output_dir' => BASE_PATH . DIRECTORY_SEPARATOR . 'build',
'phar_filename' => 'webman.phar',
'signature_algorithm'=> Phar::SHA256, //set the signature algorithm for a phar and apply it. The signature algorithm must be one of Phar::MD5, Phar::SHA1, Phar::SHA256, Phar::SHA512, or Phar::OPENSSL.
'private_key_file' => '', // The file path for certificate or OpenSSL private key file.
'exclude_pattern' => '#^(?!.*(config/plugin/webman/console/app.php|webman/console/src/Commands/(PharPackCommand.php|ReloadCommand.php)|LICENSE|composer.json|.github|.idea|doc|docs|.git|.setting|runtime|test|test_old|tests|Tests|vendor-bin|.md))(.*)$#',
'exclude_files' => [
'.env', 'LICENSE', 'composer.json', 'composer.lock','start.php'
]
];
看报错是 memory_limit 设置没生效,还是128M,上传的文件太大了超过了128M。
没生效可能是你弄错php.ini文件了,执行
php --ini
找到php.ini的路径更改memory_limit,改完后要restart重启webman才能生效。好的 我检查一下