bcrypt不是azure app service

时间:2016-11-23 22:01:54

标签: node.js azure bcrypt appveyor

为了使用节点库Sharp进行一些图像处理,我不得不将Azure App Service上的节点可执行文件升级到64位。我通过手动下载可执行文件然后在IISNode.yml中设置其路径来完成此操作。

不幸的是,当我启动应用程序时,它会抛出以下错误:

应用程序抛出了未捕获的异常并被终止: 错误:%1不是有效的Win32应用程序。

\\?\D:\home\site\wwwroot\node_modules\bcrypt\build\Release\bcrypt_lib.node
    at Error (native)
    at Object.Module._extensions..node (module.js:597:18)
    at Module.load (module.js:487:32)
    at tryModuleLoad (module.js:446:12)
    at Function.Module._load (module.js:438:3)
    at Function.cls_wrapMethod [as _load] (D:\home\site\wwwroot\node_modules\newrelic\lib\shimmer.js:256:38)
    at Module.require (module.js:497:17)
    at require (internal/module.js:20:19)
    at bindings (D:\home\site\wwwroot\node_modules\bindings\bindings.js:76:44)
    at Object.<anonymous> (D:\home\site\wwwroot\node_modules\bcrypt\bcrypt.js:3:35)
    at Module._compile (module.js:570:32)
    at Object.Module._extensions..js (module.js:579:10)
    at Module.load (module.js:487:32)
    at tryModuleLoad (module.js:446:12)
    at Function.Module._load (module.js:438:3)
    at Function.cls_wrapMethod [as _load] (D:\home\site\wwwroot\node_modules\newrelic\lib\shimmer.js:256:38)
    at Module.require (module.js:497:17)
    at require (internal/module.js:20:19)
    at Object.<anonymous> (D:\home\site\wwwroot\node_modules\bookshelf-bcrypt\index.js:5:14)
    at Module._compile (module.js:570:32)
    at Object.Module._extensions..js (module.js:579:10)
    at Module.load (module.js:487:32)

我使用Appveyor CI系统构建和部署应用程序。这是我的appveyor.yml文件的相关部分:

install:
  - ps: Install-Product node $env:nodejs_version x64
  - SET CL=-DDELAYIMP_INSECURE_WRITABLE_HOOKS
  - npm i --loglevel=warn
  - npm prune --production
  - 7z a api.zip * -x!test -x!db -x!.git -xr!.* -x!README.md -x!nodemon.json -x!appveyor.yml | FIND /V "ing  "

您将看到我正在使用64位版本的Node进行构建。

在我的Azure应用服务上,我将平台设置为64位。

我尝试的事情:

  • 在Azure上将平台设置为32位
  • 在App Service上吹掉node_modules /

提前致谢!

1 个答案:

答案 0 :(得分:5)

Azure Web Apps上的默认node.js执行应用程序均为32位。所以它提出了你的问题。我们可以使用自定义node.js运行时来满足您的要求。请尝试以下步骤:

1,在您的应用程序中放置64位node.exe执行应用程序,例如:     在runtime文件夹中。

2,修改iisnode.yml,设置:

nodeProcessCommandLine: "D:\home\site\wwwroot\runtime\node.exe"

3,将整个应用程序部署到Azure Web Apps。

此外,您可以使用以下代码验证node.js二进制文件是否为x64

var http = require("http");

http.createServer(function (request, response) {
    response.writeHead(200, { "Content-Type": "text/plain" });
    response.write(require('os').arch());
    response.end();

}).listen(process.env.PORT);

如果这不起作用,请告诉我。