1

我正在尝试在我的服务器上运行 npm install 并收到此错误。

> node-cron@2.0.3 postinstall /home/workspace/AgreementCancellationProd/retrymechanism/node_modules/node-cron
> opencollective-postinstall

/usr/bin/env: node: Permission denied
npm WARN retrymechanism@1.0.0 No description
npm WARN retrymechanism@1.0.0 No repository field.

npm ERR! code ELIFECYCLE
npm ERR! errno 126
npm ERR! node-cron@2.0.3 postinstall: `opencollective-postinstall`
npm ERR! Exit status 126
npm ERR!
npm ERR! Failed at the node-cron@2.0.3 postinstall script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR!     /root/.npm/_logs/2019-03-06T11_22_15_832Z-debug.log

NPM 安装在我的本地系统上运行良好,但在服务器上失败。

此外,当我尝试使用安装 node-cron@2.0.3 时npm install node-cron@2.0.3,它会引发相同的错误。

Amazon Linux在 EC2 上使用。

我试过清理缓存,删除 node_modules 和 package-lock.json 并再次安装。没有任何效果。

这是我的 package.json :

{
  "name": "retrymechanism",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "author": "",
  "license": "ISC",
  "dependencies": {
    "express": "^4.16.4",
    "fs": "0.0.1-security",
    "mysql2": "^1.6.5",
    "node-cron": "^2.0.3",
    "request": "^2.88.0",
    "sequelize": "^4.42.0"
  }
}

可能是什么问题呢?请帮忙!

4

4 回答 4

5

我遇到了我用来yarn解决问题的相同问题,我认为它与npm版本有关:

yarn add node-cron@2.0.3
于 2019-03-06T11:42:10.553 回答
3

该错误意味着您的 js 文件之一需要标记为可执行文件。尝试:

chmod +x src/index.js
于 2020-01-20T06:40:16.307 回答
2

对于在使用Jenkins部署React JS应用程序时遇到相同问题的任何人,我在上面即兴创作了@oabarca 的答案并且它有效。只要确保你在这样的前后都有这一行:chmod +x ./node_modules/.bin/react-scriptsnpm installnpm run build

pwd
npm install
chmod +x ./node_modules/.bin/react-scripts   # add this line
npm run build
# ..rest of the code here

希望它可以节省一些谷歌搜索时间;)

于 2020-11-11T12:21:51.773 回答
0

尝试从您的 package-json 中删除“node-cron”片刻,然后运行 ​​npm install。如果它以这种方式工作,则 node-cron 存在问题,您可能需要定义不同的版本。

于 2019-03-06T11:44:02.833 回答