nuxt pm2 로 실행하기 > IT 기술백서

1. pm2 설치

# npm install pm2 -g

 

2. 실행명세서 작성

# vim echosystem.config.js

[code]

module.exports = {

  apps: [

    {

      name: ‘NuxtAppName’,

      exec_mode: ‘cluster’,

      instances: ‘max’, // Or a number of instances

      script: ‘./node_modules/nuxt/bin/nuxt.js’,

      args: ‘start’

    }

  ]

}

[/code]

 

3. 실행

# pm2 start

 

4. systemctl 에 등록 (root 권한으로 실행)

# pm2 startup

 

 

댓글 달기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다

위로 스크롤