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