【发布时间】:2019-08-01 09:22:28
【问题描述】:
我成功安装了 screepmod-mongo。但是在执行npx screeps start时出错,如下:
gyp ERR! configure error
gyp ERR! stack Error: EACCES: permission denied, stat '/root/.npm/_npx/4679/lib/node_modules/screeps/node_modules/isolated-vm/.node-gyp/8.16.0'
gyp ERR! System Linux 4.15.0-54-generic
gyp ERR! command "/usr/local/bin/node" "/usr/local/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild" "--release" "-j" "4"
gyp ERR! cwd /root/.npm/_npx/4679/lib/node_modules/screeps/node_modules/isolated-vm
gyp ERR! node -v v8.16.0
gyp ERR! node-gyp -v v3.8.0
gyp ERR! not ok
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! isolated-vm@1.7.10 install: `node-gyp rebuild --release -j 4`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the isolated-vm@1.7.10 install 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-07-30T01_45_59_317Z-debug.log
Install for screeps@latest failed with code 1
以下是我使用的版本列表。
- 节点 8.16.0
- npm 6.4.1
- screeps 3.4.3
- screepsmod-mongo 2.5.5
- mongodb 4.0.10
- redis 5.0.5
以下是安装screepsmod-mongo时的输出。
Screeps mod "screepsmod-mongo" has been successfully installed
+ screepsmod-mongo@2.5.5
added 15 packages from 10 contributors, removed 541 packages, updated 1 package and audited 183 packages in 85.481s
found 3 vulnerabilities (1 low, 2 high)
run `npm audit fix` to fix them, or `npm audit` for details
我的mongodb和redis安装正确,地址是mongodb://screeps-mongo和screeps-redis。我在.screepsrc做了如下配置:
[mongo]
host = mongodb://screeps-mongo
[redis]
host = screeps-redis
以下在mods.json:
"mods": [
"node_modules/screepsmod-mongo/index.js"
]
我该如何解决这个问题?
【问题讨论】:
-
不是安装问题,用户权限不够。该命令将与 sudo 一起使用。但是您应该向用户添加权限。
标签: node.js mongodb npm redis screeps