reactjstypescriptnext.jsnode-modulesnpm-build

Unhandled 'error' event while building react.js/next.js app


Building on local server is okey, but if I try building on production linux server, then get error:

> next build                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                            
info  - Loaded env from /home/*/*********/tech/public_html/.env.production                                                                                                                                                                                    
info  - Checking validity of types                                                                                                                                                                                                                          
node:events:504                                                                                                                                                                                                                                             
      throw er; // Unhandled 'error' event                                                                                                                                                                                                                  
      ^                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                            
Error: spawn /home/*/*********/tech/nodejs/bin/node EAGAIN                                                                                                                                                                                                    
    at Process.ChildProcess._handle.onexit (node:internal/child_process:283:19)                                                                                                                                                                             
    at onErrorNT (node:internal/child_process:478:16)                                                                                                                                                                                                       
    at processTicksAndRejections (node:internal/process/task_queues:83:21)                                                                                                                                                                                  
Emitted 'error' event on ChildProcess instance at:                                                                                                                                                                                                          
    at Process.ChildProcess._handle.onexit (node:internal/child_process:289:12)                                                                                                                                                                             
    at onErrorNT (node:internal/child_process:478:16)                                                                                                                                                                                                       
    at processTicksAndRejections (node:internal/process/task_queues:83:21) {                                                                                                                                                                                
  errno: -11,                                                                                                                                                                                                                                               
  code: 'EAGAIN',                                                                                                                                                                                                                                           
  syscall: 'spawn /home/*/*********/tech/nodejs/bin/node',                                                                                                                                                                                                    
  path: '/home/*/*********/tech/nodejs/bin/node',                                                                                                                                                                                                             
  spawnargs: [                                                                                                                                                                                                                                              
    '/home/*/*********/tech/public_html/node_modules/next/dist/compiled/jest-worker/processChild.js'                                                                                                                                                          
  ]                                                                                                                                                                                                                                                         
} 

Tried to reinstall node_modules, clean cache but nothing changes. Checked if there are some unhandled errors.

package.json:

{
  "name": "*****",
  "version": "1.0.0",
  "description": "******",
  "main": "index.js",
  "scripts": {
    "dev": "next dev",
    "build": "next build",
    "start": "next start",
    "lint": "next lint"
  },
  "dependencies": {
    "mysql": "^2.18.1",
    "next": "^12.1.0",
    "react": "^17.0.2",
    "react-dom": "^17.0.2"
  },
  "devDependencies": {
    "@types/mysql": "^2.15.21",
    "@types/node": "^17.0.21",
    "@types/react": "^17.0.40",
    "eslint": "^8.11.0",
    "eslint-config-next": "^12.1.0",
    "typescript": "^4.6.2"
  }
}

Solution

  • The main cause is that Timeweb hosting is limited by 40 server processes. If don't use typescript, then you will have the error like "sh: 1: next: Permission denied".