I have been using DO for last one month, its good and all but I still can’t figure out few things.
I’m hosting a telegram bot. Which would run in background (of course), even if I close the terminal. I have tried bot nohup
and screen
they work for about 4-5 hours and then they freeze, even though I can see they’re running in processes. There is no error in the logs whatsoever.
Just now, I rebooted my droplet and tried to run a script without nohup/screen
, just with python3
and it is not running, no logs, no errors nothing just remains blank after the commands.
Can someone please explain what is this and how to deal with it?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hi @terminalwarlord,
You should use a service called PM2. Check this tutorial:
https://www.digitalocean.com/community/tutorials/how-to-use-pm2-to-setup-a-node-js-production-environment-on-an-ubuntu-vps
it’s for NodeJS however you can use the same technics for your Python script as well.