Okay so I have a DigitalOcean VPS and I installed PMMP using PuTTY and I joined my server but when I closed puTTY it said "Server Closed", how do I make my server be online 24/7 using Linux
To keep your server running after logging out of your VPS you have to install a Linux program called "screen". If you're on Ubuntu you can do this by typing Code: sudo apt-get install screen or Code: sudo yum install screen if you're on CentOS. Then run Code: screen ./start.sh to run your server. Now, you can log out of Putty and you're server will keep running. To go back to the server console, log back into your VPS in Putty and type Code: screen -r and you'll be good to go.
Screen is what I use. It has everything you need to use for PocketMine, and it's small in disk space.
yes it works and if that's all you care then you are fine, just like how internet explorer works, but someone surely would recommend using something better
If you're using Ubuntu and installed tmux then follow these steps: Create a tmux session Code: tmux new-session -s console Attaching to a created session Code: tmux attach -t {session-name} In your case Code: Tmux attach -t console Hope it helps