この記事では主に、コンパイルおよびインストール中に fileinfo
内存必须要大于1G,PHP是默认安装。由于我在编译时禁用了 --disable-fileinfo
但在项目又要是用,所有直接当着模块安装,不用重新编译安装整个PHP。
如果在添加fileinfo
出现 internal compiler error: Killed (program cc1plus)
错误,是由于内存不足导致,临时使用交换分区来解决吧。
sudo dd if=/dev/zero of=/swapfile bs=64M count=16sudo mkswap /swapfilesudo swapon /swapfile#编译完后释放临时空间Code:sudo swapoff /swapfilesudo rm /swapfile
在安装项目是 出现
[root@iZwz99qnmldt4n744noo9gZ biyesheji]# composer installDo not run Composer as root/super user! See https://getcomposer.org/root for details Loading composer repositories with package information Installing dependencies (including require-dev) from lock file Your requirements could not be resolved to an installable set of packages. ....
也就是说 在执行exec, install, and update
是允许第三方库在你的系统里面执行,执行的都是第三方库里"plugins" and "scripts"
,Plugins and scripts
就会有对应的用户权限去执行composer,为了安全起见避免使用超级用户 或 root
権限を有効にした場合に、PHP7.2.3 のインストール中に発生する問題を解決する方法を説明します。
公式の解決策は次のとおりです (以下のパラメータを追加するサードパーティのスクリプトとプラグインは許可されません) <br>
作曲家インストール --no-plugins --no-scripts ... <br>
Composer update --no-plugins --no-scripts ...
コンパイルとインストール中に fileinfo
fileinfo
以上がPHP7.2.3のインストール中に発生した問題の解決方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。