node.js กับ pm2
วิธีการ run node.js บน server ด้วย pm2
ติดตั้งโปรแกรม
npm install pm2 -g
รันโปรแกรม ที่ต้องการพร้อมการกำหนดชื่อ
pm2 start index.js -n "Hello Wold PM2"
รันโปรแกรม แบบ cluster
pm2 start index.js -i 2 // หมายถึง ทำเป็น cluster 2 ตัว
หรือ
pm2 start index.js -i max // หมายถึงทำเป็น cluster มากที่สุดเท่าที่ cpu รองรับ
รันโปรแกรมทุกครั้งหลังจาก reboot linux
pm2 startup // หมายถึงเมื่อมีการ start server ให้ program เรา start ด้วย pm2 save // หมายถึงให้ pm2 เก็บข้อมูลทั้งหมดเพื่อใช้ตอน start
https://medium.com/pnpsolution/%E0%B8%A7%E0%B8%B4%E0%B8%98%E0%B8%B5%E0%B8%81%E0%B8%B2%E0%B8%A3-run-node-js-%E0%B8%9A%E0%B8%99-server-%E0%B8%94%E0%B9%89%E0%B8%A7%E0%B8%A2-pm2-fd66c1e54b60
ความคิดเห็น
แสดงความคิดเห็น