gpt4 book ai didi

node.js - Next.js - 错误构建目录在 EC2 上不可写

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

我第一次运行带有自定义 server.js 的 Next.js 应用程序在 Elastic BeanStalk 上使用 64bit Amazon Linux/4.11.0 .

在创建应用程序、环境并使用 eb-cli 部署后,我在 EB 仪表板中收到警告 Environment health has transitioned from Degraded to Severe .

我将 Node 命令 更改为 npm run deploy 的配置.什么都没有改变。

这是我的 package.json .

"scripts": {
"start": "pm2 start server.js -i max",
"build": "next build",
"dev": "nodemon --exec babel-node server.js",
"start-next": "next start",
"deploy": "NODE_ENV=production next build && pm2 start server.js -i max",
"test": "echo \"Error: no test specified\" && exit 1"
},

我用 eb ssh 连接到 eb 实例在找到项目目录后,我尝试执行 npm run build但是发生了错误。

> NODE_ENV=production next build && pm2 start server.js -i max

> Build error occurred
Error: > Build directory is not writeable. https://err.sh/zeit/next.js/build-dir-not-writeable
at build (/var/app/current/node_modules/next/dist/build/index.js:1:6361)
at <anonymous>
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! webreader-client@1.0.0 deploy: `NODE_ENV=production next build && pm2 start server.js -i max`
npm ERR! Exit status 1

我创建了一个 .next目录 sudo但错误仍然存​​在。

文档: https://github.com/zeit/next.js/blob/master/errors/build-dir-not-writeable.md

最佳答案

在与 AWS 支持人员通了将近 4 个小时的电话后,他们的解决方案如下:

在项目的根目录中创建一个文件夹/文件:.ebextensions/00_dir_permission.config

commands:
01_set_file_permissions:
command: "chmod 777 -R /tmp"

当然这不太理想,但出于某种原因,现在 EB 中的权限已经更改,因此如果不像这样调整权限,您将无法启动构建。希望这种情况很快就会改变。

关于node.js - Next.js - 错误构建目录在 EC2 上不可写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58614922/

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