gpt4 book ai didi

node.js - 如何让我的 Next.js 应用程序在运行 ubuntu-latest 的 Azure 应用服务中启动?

转载 作者:行者123 更新时间:2023-12-05 04:29:38 25 4
gpt4 key购买 nike

我正在尝试在 Azure 上部署 Next.js (SSR)。

我有一个构建管道,可以发布整个根文件夹(不仅仅是静态应用程序的 .next 文件夹)

trigger:
- main

pool:
vmImage: "ubuntu-latest"

# Set variables
variables:
directory: .

steps:
- task: NodeTool@0
inputs:
versionSpec: "16.x"
displayName: "Install Node.js"

- script: yarn
displayName: "Install dependencies"
workingDirectory: $(directory)

- task: Cache@2
displayName: 'Cache .next/cache'
inputs:
key: next | $(Agent.OS) | yarn.lock
path: '$(System.DefaultWorkingDirectory)/.next/cache'

- script: yarn build
displayName: "Build for production"
workingDirectory: $(directory)

- task: CopyFiles@2
displayName: "Copy files"
inputs:
sourceFolder: "$(directory)"
Contents: "**/*"
TargetFolder: "$(Build.ArtifactStagingDirectory)"
cleanTargetFolder: true

- task: ArchiveFiles@2
displayName: "Archive files"
inputs:
rootFolderOrFile: "$(Build.ArtifactStagingDirectory)"
includeRootFolder: false
archiveType: zip
archiveFile: $(Build.ArtifactStagingDirectory)/$(Build.BuildId).zip
replaceExistingArchive: true

- task: PublishBuildArtifacts@1
displayName: "Publish build artifacts"
inputs:
pathtoPublish: $(Build.ArtifactStagingDirectory)/$(Build.BuildId).zip

我在项目根文件夹中还有一个文件 ecosystem.config.js ,其中包含内容(如 this answer 中所述)

module.exports = {
apps: [
{
name: "app-name",
script: "./node_modules/.bin/next",
args: "start -p " + (process.env.PORT || 3000),
watch: false,
autorestart: true,
},
],
};

如上所述,构建管道将整个根文件夹发布为发布管道的 .zip 工件。

我有一个发布管道,用于将工件部署到应用服务并运行启动命令(从 same answer 和之前的 Microsoft docs )

pm2 start /home/site/wwwroot/ecosystem.config.js --no-daemon

package.json 脚本部分

"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
}

我可以看到构建和发布管道都成功完成,并且我可以看到根项目文件夹中的文件位于 /home/site/wwwroot 中,但是当我访问该站点时,所有我得到的是

Site error message

指向诊断资源的链接不会提供太多见解,但如果我检查应用服务中 docker 容器的日志,我会看到

2022-05-16T11:03:07.083870878Z 2022-05-16T11:03:07: PM2 log: App [app-name:0] exited with code [1] via signal [SIGINT]
2022-05-16T11:03:07.085484100Z 11:03:07 PM2 | App [app-name:0] exited with code [1] via signal [SIGINT]
2022-05-16T11:03:07.086237210Z 2022-05-16T11:03:07: PM2 log: App [app-name:0] starting in -fork mode-
2022-05-16T11:03:07.087102722Z 11:03:07 PM2 | App [app-name:0] starting in -fork mode-
2022-05-16T11:03:07.103212737Z 2022-05-16T11:03:07: PM2 log: App [app-name:0] online
2022-05-16T11:03:07.105379766Z 11:03:07 PM2 | App [app-name:0] online
2022-05-16T11:03:07.370010000Z 11:03:07 0|app-name | Error: Cannot find module '../build/output/log'
2022-05-16T11:03:07.372651936Z 11:03:07 0|app-name | Require stack:
2022-05-16T11:03:07.372950840Z 11:03:07 0|app-name | - /home/site/wwwroot/node_modules/.bin/next
2022-05-16T11:03:07.373244644Z 11:03:07 0|app-name | at Function.Module._resolveFilename (node:internal/modules/cjs/loader:933:15)
2022-05-16T11:03:07.373521147Z 11:03:07 0|app-name | at Module.Hook._require.Module.require (/usr/local/lib/node_modules/pm2/node_modules/require-in-the-middle/index.js:61:29)
2022-05-16T11:03:07.373779851Z 11:03:07 0|app-name | at require (node:internal/modules/cjs/helpers:94:18)
2022-05-16T11:03:07.374053954Z 11:03:07 0|app-name | at Object.<anonymous> (/home/site/wwwroot/node_modules/.bin/next:7:35)
2022-05-16T11:03:07.375460973Z 11:03:07 0|app-name | at Module._compile (node:internal/modules/cjs/loader:1101:14)
2022-05-16T11:03:07.375473673Z 11:03:07 0|app-name | at Object.Module._extensions..js (node:internal/modules/cjs/loader:1153:10)
2022-05-16T11:03:07.375477573Z 11:03:07 0|app-name | at Module.load (node:internal/modules/cjs/loader:981:32)
2022-05-16T11:03:07.375480873Z 11:03:07 0|app-name | at Function.Module._load (node:internal/modules/cjs/loader:822:12)
2022-05-16T11:03:07.375485473Z 11:03:07 0|app-name | at Object.<anonymous> (/usr/local/lib/node_modules/pm2/lib/ProcessContainerFork.js:33:23)
2022-05-16T11:03:07.375693476Z 11:03:07 0|app-name | at Module._compile (node:internal/modules/cjs/loader:1101:14) {
2022-05-16T11:03:07.376825291Z 11:03:07 0|app-name | code: 'MODULE_NOT_FOUND',
2022-05-16T11:03:07.377099895Z 11:03:07 0|app-name | requireStack: [ '/home/site/wwwroot/node_modules/.bin/next' ]
2022-05-16T11:03:07.377376699Z 11:03:07 0|app-name | }
2022-05-16T11:03:07.378681516Z 2022-05-16T11:03:07: PM2 log: App [app-name:0] exited with code [1] via signal [SIGINT]
2022-05-16T11:03:07.379377325Z 2022-05-16T11:03:07: PM2 log: Script /home/site/wwwroot/node_modules/.bin/next had too many unstable restarts (16). Stopped. "errored"
2022-05-16T11:03:07.384267191Z 11:03:07 PM2 | App [app-name:0] exited with code [1] via signal [SIGINT]
2022-05-16T11:03:07.384723497Z 11:03:07 PM2 | Script /home/site/wwwroot/node_modules/.bin/next had too many unstable restarts (16). Stopped. "errored"

有人知道如何从这里继续吗?

提前致谢!

最佳答案

我通过将 ecosystem.config.js 中的启动脚本更改为

解决了这个问题
./node_modules/next/dist/bin/next

而不是

./node_modules/.bin/next

我的新ecosystem.config.js

module.exports = {
apps: [
{
name: "app-name",
script: "./node_modules/next/dist/bin/next",
args: "start -p " + (process.env.PORT || 3000),
watch: false,
autorestart: true,
},
],
};

关于node.js - 如何让我的 Next.js 应用程序在运行 ubuntu-latest 的 Azure 应用服务中启动?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/72258454/

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