gpt4 book ai didi

node.js - 在 docker : Error opening Api. yaml 中使用 pm2 运行 Node.js/Swagger 应用程序

转载 作者:行者123 更新时间:2023-12-02 16:08:29 25 4
gpt4 key购买 nike

<强>1。摘要:

我创建了一个简单的应用程序,它使用 Node.js、Express 和 Swagger,遵循此 tutorial并使用generator-express-no-stress 。此外,应用程序应使用 pm2 执行。在 Docker 容器中。一切正常,直到我启动容器,这在尝试读取 Api.yaml 时出现错误。

<强>2。步骤:

首先,我创建项目:

yo express-no-stress server
cd server
npm i

对于服务器,我将 localhost 更改为 0.0.0.0 (http.createServer(app).listen(port, '0.0.0.0',welcome( port));),使用 npm run dev 运行服务器并执行 curl 0.0.0.0:3000/api/v1/spec,返回 - 作为预期 - Swagger 文件的规范。

接下来,我将 pm2 的配置文件添加到项目中,pm2.json:

{
"name": "server",
"script": "build/main.js",
"env": {
"APP_ID": "server",
"PORT": "3000",
"LOG_LEVEL": "debug",
"REQUEST_LIMIT": "100kb",
"SESSION_SECRET": "mySecret"
}
}

这次我使用pm2来启动服务器:

$ pm2 start pm2.json
$ curl 0.0.0.0:3000/api/v1/spec
$ pm2 delete all

再次返回规范。

接下来,我添加一个Dockerfile:

FROM node:alpine

COPY build build/
COPY package.json .
COPY pm2.json .

RUN npm i pm2 -g \
&& npm i --production \
&& npm cache verify

CMD ["pm2-runtime", "start", "pm2.json"]

我构建图像并运行容器:

docker build -t server:0.0.1 .
docker run --rm --net=host server:0.0.1

<强>3。问题与疑问

这是我的问题:

[2018-05-30 09:51:49] PM2 log: Launching in no daemon mode
[2018-05-30 09:51:49] PM2 log: Starting execution sequence in -fork mode- for app name:server id:0
[2018-05-30 09:51:49] PM2 log: App name:server id:0 online
{"level":30,"time":1527673910123,"msg":"up and running in development @: r2d2 on port: 3000}","pid":17,"hostname":"r2d2","name":"server","v":1}
Error: Error opening file "///server/common/swagger/Api.yaml"
ENOENT: no such file or directory, open '///server/common/swagger/Api.yaml'
at ReadFileContext.callback (/node_modules/json-schema-ref-parser/lib/resolvers/file.js:52:20)
at FSReqWrap.readFileAfterOpen [as oncomplete] (fs.js:352:13)
Error: ENOENT: no such file or directory, open '///server/common/swagger/Api.yaml'

我不知道为什么会出现错误以及如何修复它。我不知道为什么路径 ///server/common/swagger/Api.yaml 看起来有点奇怪,我什至不知道这是否会导致错误。尽管如此,容器仍在运行。那么:我该如何解决它,或者知道在哪里查看?

<强>4。进一步的步骤

但是,我已执行以下步骤来检查错误:

curl 0.0.0.0:3000/api/v1/spec 从我的主机返回:

<h1>500 Error</h1><pre>Error opening file "///server/common/swagger/Api.yaml" 
ENOENT: no such file or directory, open '///server/common/swagger/Api.yaml'</pre>

使用docker exec -it aacfcc6c5744 sh进入容器:

pm2 show server
┌───────────────────┬────────────────────────────────────┐
| status │ online │
│ name │ server │
│ restarts │ 0 │
│ uptime │ 3m │
│ script path │ /build/main.js │
│ script args │ N/A │
│ error log path │ /root/.pm2/logs/server-error-0.log │
│ out log path │ /root/.pm2/logs/server-out-0.log │
│ pid path │ /root/.pm2/pids/server-0.pid │
│ interpreter │ node │
│ interpreter args │ N/A │
│ script id │ 0 │
│ exec cwd │ / │
│ exec mode │ fork_mode │
│ node.js version │ 10.2.1 │
│ watch & reload │ ✘ │
│ unstable restarts │ 0 │
│ created at │ 2018-05-30T09:51:49.825Z |
└───────────────────┴────────────────────────────────────┘

还有:

cd build/ && tree
.
├── main.js
├── main.map
├── public
│   ├── api-explorer
│   │   ├── favicon-16x16.png
│   │   ├── favicon-32x32.png
│   │   ├── index.html
│   │   ├── oauth2-redirect.html
│   │   ├── swagger-ui-bundle.js
│   │   ├── swagger-ui-bundle.js.map
│   │   ├── swagger-ui-standalone-preset.js
│   │   ├── swagger-ui-standalone-preset.js.map
│   │   ├── swagger-ui.css
│   │   ├── swagger-ui.css.map
│   │   ├── swagger-ui.js
│   │   └── swagger-ui.js.map
│   └── index.html
└── server
└── common
└── swagger
└── Api.yaml

很抱歉问了这么长的问题,但我想确保我的所有步骤都清晰且可重现。如果您需要更多信息,请告诉我。

<强>5。编辑:

问题与pm2有关。如果我进入容器,将应用程序的端口更改为 3001(因为 3000 已在使用中)并执行 npm start (cd build && node main) 它可以工作并且我可以从本地计算机访问该规范。

最佳答案

问题已解决。我只需要用 cwd 将当前工作目录添加到 pm2 的配置文件中:

{
"name": "server",
"script": "build/main.js",
"cwd": "build/",
"env": {
"APP_ID": "server",
"PORT": "3000",
"LOG_LEVEL": "debug",
"REQUEST_LIMIT": "100kb",
"SESSION_SECRET": "mySecret"
}
}

关于node.js - 在 docker : Error opening Api. yaml 中使用 pm2 运行 Node.js/Swagger 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50603161/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com