π Vps (Using PM2)
Hi there! This guide will explain you how to host Open Ticket 24/7 on a vps with PM2.
PM2 is a process manager for node.js. It can run multiple bots on your server in the background and automatically restart processes when they crash.

Vps (Using PM2)
Hosting 24/7 on a VPS
π₯ Installing PM2β
Make sure you have Node.js installed on your VPS before proceeding!
To install PM2 globally, run:
npm install -g pm2
After installation, confirm that PM2 is installed by checking its version:
pm2 --version
β Starting Open Ticketβ
Once PM2 is installed, navigate to your Open Ticket folder and start the bot using PM2:
pm2 start npm --name="<bot-name>" -- start
π Explanationβ
pm2 start npm
β Runs an npm script using PM2.--name="<bot-name>"
β Assigns a name to the process (you can change this).-- start
β Runs thestart
script from Open Ticketβspackage.json
.
To verify that the bot is running, use:
pm2 list
If everything is correct, you should see Open Ticket in the process list.
Visit the PM2 documentation for more info:
π‘ Managing PM2 Processesβ
Once Open Ticket is running with PM2, you can control it with various commands.
βΆοΈ Start or Restart the Botβ
If the bot is stopped or crashes, restart it with:
pm2 restart <bot-name>
If you need to start it again after stopping:
pm2 start <bot-name>
βΉοΈ Stop or Delete the Botβ
To temporarily stop the bot:
pm2 stop <bot-name>
To completely remove it from PM2:
pm2 delete <bot-name>
π Viewing Logsβ
If something isnβt working, check the logs with:
pm2 logs <bot-name>
You can also view real-time logs:
pm2 monit
π Auto-Restart on Server Rebootβ
To ensure Open Ticket starts automatically when your VPS reboots, run:
pm2 startup
This will generate a command that you need to copy and run. Then, save your process list so that it restarts after reboot:
pm2 save
π Summaryβ
With PM2, Open Ticket will run 24/7 on your VPS. It will automatically restart if it crashes and can be configured to start on boot. Use the commands above to manage your bot and keep it running smoothly.
Don't forget to give Open Ticket a star on Github to help us grow!