Home  >  Article  >  Development Tools  >  Executing composer throws Killed solution

Executing composer throws Killed solution

藏色散人
藏色散人forward
2020-09-30 15:07:332339browse

The following tutorial column of composer will introduce to you the solution to the Killed problem when executing composer. I hope it will be helpful to friends in need!

Executing composer throws Killed solution

1. The error is reported as follows

root@test2:/work/usrc$ composer require qcloud/cos-sdk-v5
./composer.json has been updated
The "extra.asset-installer-paths" option is deprecated, use the "config.fxp-asset.installer-paths" option
Loading composer repositories with package information
Updating dependencies (including require-dev)
Killed

2. Solution

This reason is mostly caused by insufficient cache. It can be increased in the Linux environment. Caching is resolved.

free -m
mkdir -p /var/_swap_
cd /var/_swap_
dd if=/dev/zero of=swapfile bs=1M count=2000
mkswap swapfile
swapon swapfile
echo “/var/_swap_/swapfile none swap sw 0 0” >> /etc/fstab
free -m

The above is the detailed content of Executing composer throws Killed solution. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:oschina.net. If there is any infringement, please contact admin@php.cn delete