8

我正在尝试在 CentOS 服务器上安装 bcrypt,但出现以下错误:

info postuninstall bcrypt@0.5.0
ERR! bcrypt@0.5.0 install: `make build`
ERR! `sh "-c" "make build"` failed with 2
ERR!
ERR! Failed at the bcrypt@0.5.0 install script.
ERR! This is most likely a problem with the bcrypt package,
ERR! not with npm itself.
ERR! Tell the author that this fails on your system:
ERR!     make build
ERR! You can get their info via:
ERR!     npm owner ls bcrypt
ERR! There is likely additional logging output above.
ERR!
ERR! System Linux 2.6.18-028stab095.1
ERR! command "nodejs" "/usr/bin/npm" "install" "bcrypt"
ERR! cwd /root/grouplo
ERR! node -v v0.6.15
ERR! npm -v 1.1.16
ERR! code ELIFECYCLE
ERR! message bcrypt@0.5.0 install: `make build`
ERR! message `sh "-c" "make build"` failed with 2
ERR! errno {}

我能做些什么来解决这个问题?谢谢,

4

5 回答 5

14

还有一个不需要编译的原生 js 版本的 bcrypt。 https://github.com/shaneGirish/bcrypt-nodejs

npm install bcrypt-nodejs

该 api 与编译版本非常相似。以下内容直接摘自自述文件

基本用法:

同步

var hash = bcrypt.hashSync("bacon");

bcrypt.compareSync("bacon", hash); // true
bcrypt.compareSync("veggies", hash); // false

异步

bcrypt.hash("bacon", null, null, function(err, hash) {
    // Store hash in your password DB.
});

// Load hash from your password DB.
bcrypt.compare("bacon", hash, function(err, res) {
    // res == true
});
bcrypt.compare("veggies", hash, function(err, res) {
    // res = false
});
于 2013-03-16T16:40:28.897 回答
7

对我来说,答案是确保我安装了 gcc、openssl 和 node-gyp。

要安装 gcc 和 openssl,请使用 yum:

sudo yum install gcc-c++ openssl-devel

要安装 node-gyp(全局),请使用 npm:

npm install -g node-gyp

然后 bcrypt 的 npm install 在 centos 上运行良好

于 2014-01-03T02:35:46.310 回答
5

我在执行 npm install bcrypt 时遇到了同样的问题。另一种选择是从源代码安装它。

git clone git://github.com/ncb000gt/node.bcrypt.js.git
cd node.bcrypt.js
node-gyp configure
node-gyp build

将 node.bcrypt.js 文件夹重命名为 bcrypt,并将其移动到项目的 node_modules 中。

您可以通过执行 npm install -g node-gyp 来安装 node-gyp(-g 全局安装它)。

于 2012-05-13T00:18:43.377 回答
2

预构建的二进制文件通常在 bcrypt 新版本发布后的几个小时内或新 NodeJS 版本发布后的几天后可用于 bcrypt。

但是,请记住,提供二进制文件只是为了方便。

如果您看到如下错误:

`在 CentOS / RHEL / Fedora 上你需要以下软件包

  • gcc-c++- 为了安装编译器链来编译节点模块。
  • make- 通过 node-gyp 运行生成的 Makefile,它按顺序调用编译器
  • python- RHEL 和 CentOS 附带安装所需的 python 版本

确保使用此命令安装所有依赖项,

yum install -y gcc-c++ make

然后继续 bcrypt 安装。

对于其他系统,请参阅:https ://github.com/kelektiv/node.bcrypt.js/wiki/Installation-Instructions

于 2018-05-02T17:02:23.927 回答
0

我也有这个问题,原来我node的不兼容bcrypt。我使用的是节点版本 lts 12,但我的 bcrypt 版本package.json5,必须是3

您可以在此处检查 node 和 bcrypt 不同版本的兼容性。

希望它对某人有所帮助

于 2021-03-08T10:24:55.833 回答