Cpanel Nodejs 无法获取应用程序的锁:%(app)s

问题描述 投票:0回答:1

`每当我想启动服务器时都会遇到此错误。

“无法获取应用程序的锁:%(app)s”

我想使用 cpanel 在我的 Linux 服务器上安装 nodejs 服务器,但是当我尝试 npm install 时,出现以下错误。

当我删除 .lock 文件,重新安装并单击 npm install 时,我再次遇到此错误。是什么原因导致这个错误?

服务器 Nodejs 版本 = 18.16

我的主文件是server.js DB:MYSQL

我的Package.json:

    {
      "name": "backend",
      "version": "1.0.0",
      "description": "",
      "main": "index.js",
      "scripts": {
        "test": "echo \"Error: no test specified\" && exit 1",
        "start": "nodemon server.js"
      },
      "author": "",
      "license": "ISC",
      "dependencies": {
        "bcrypt": "^5.1.1",
        "cookie-parser": "^1.4.6",
        "cors": "^2.8.5",
        "express": "^4.18.2",
        "jsonwebtoken": "^9.0.2",
        "mysql": "^2.18.1",
        "mysql2": "^3.6.1",
        "nodemon": "^3.0.1",
        "path": "^0.12.7"
      }}`

我尝试重新安装,但我不断收到相同的错误。

node.js linux express cpanel web-hosting
1个回答
0
投票
My problem persists, how can I solve it?
© www.soinside.com 2019 - 2024. All rights reserved.