Setting up a Production Ready VPS is a Lot easier than I thought - Best Guide on How to deploy backend code in production
- ?Connect: https://www.subham.online
- ?GitHub: https://github.com/Subham-Maity
- ?Twitter: https://twitter.com/TheSubhamMaity
- ?LinkedIn: https://www.linkedin.com/in/subham-xam
- ?Insta: https://www.instagram.com/subham_xam
Let's be real... Tired of deployment tutorials that leave you hanging? Yeah, me too.
Look, I've noticed something while helping other developers - most guides skip the small but super important steps. You know what happens next? You're stuck with errors at midnight, opening 50 browser tabs trying to figure out what went wrong.
That's why I created this guide. I'll walk you through EVERY single step of deploying your server. Whether you're working with:
- Node.js
- Go
- Spring Boot (Java)
- Rust
- Django
- Laravel
- Flask
- Or any other server
I'll cover those tiny details that usually trip people up.
Think of this as your friend sitting next to you, helping you deploy your server without pulling your hair out ?.
Got stuck somewhere? Just comment below or message me directly. I actually answer!
Ready to deploy your server the right way? Let's get started!
1️⃣ First Step - Connect VPS
✅ 1. Choose a Hosting Provider
Purchase a VPS plan from any hosting provider.
✅ 2. Get the Credentials
Whether you're freelancing or working in an office, you'll need three things:
- IP address: 568.82.48.166
- Username: root
- Password: Subham@Xam_08
Example:
568.82.48.166 root Subham@Xam_08
✅ 3. Connect via Terminal
Open your terminal and type:
ssh root@568.82.48.166
✅ 4. Verify the Connection
You'll see a message like this:
The authenticity of host '568.82.48.166 (568.82.48.166)' can't be established. ED33319 key fingerprint is SHA256:kLP3I9......QgQI. This key is not known by any other names. Are you sure you want to continue connecting (yes/no/[fingerprint])?
Just type yes.
✅ 5. Enter the Password
Next, it will prompt:
Warning: Permanently added '568.82.48.166' (ED25519) to the list of known hosts. root@568.82.48.166's password:
Paste your password (Subham@Xam_08) and press Enter.
(Note: The terminal won't show any characters while typing the password. Just hit Enter.)
✅ 6. Success!
If everything is correct, you'll see:
Welcome to Ubuntu 54.54.1 LTS (GNU/Linux 8.65.0-424-generic x86_64) * Documentation: https://help.ubuntu.com * Management: https://landscape.canonical.com * Support: https://ubuntu.com/advantage System information as of Sat Dec 21 11:56:39 PM UTC 2024 System load: 0.01555554443125 Processes: 292 Usage of /: 2.1% of 20000.02GB Users logged in: 0 Memory usage: 5% IPv4 address for kms160: 568.82.48.166 Swap usage: 0% * Strictly confined Kubernetes makes edge and IoT secure. Learn how MicroK8s just raised the bar for easy, resilient and secure K8s cluster deployment. https://ubuntu.com/engage/secure-kubernetes-at-the-edge 137 updates can be applied immediately. To see these additional updates run: apt list --upgradable *** System restart required *** Last login: Mon Dec 9 06:55:53 2024 from 203.145.52.235 root@ajfaljflaf:~#
What does root@ajfaljflaf:~# mean?
This prompt confirms you are logged in to the server with the hostname ajfaljflaf as the root user. You're now ready to execute commands and set up your server.
2️⃣ Second Step - Ready Your System
✅ 1. Clear the Terminal
Once logged in, type:
568.82.48.166 root Subham@Xam_08
✅ 2. Verify Directories
Check your current directory and list files:
ssh root@568.82.48.166
Example output:
The authenticity of host '568.82.48.166 (568.82.48.166)' can't be established. ED33319 key fingerprint is SHA256:kLP3I9......QgQI. This key is not known by any other names. Are you sure you want to continue connecting (yes/no/[fingerprint])?
✅ 3. Update the Package List
Refresh the package list to ensure the latest updates:
Warning: Permanently added '568.82.48.166' (ED25519) to the list of known hosts. root@568.82.48.166's password:
Example output:
Welcome to Ubuntu 54.54.1 LTS (GNU/Linux 8.65.0-424-generic x86_64) * Documentation: https://help.ubuntu.com * Management: https://landscape.canonical.com * Support: https://ubuntu.com/advantage System information as of Sat Dec 21 11:56:39 PM UTC 2024 System load: 0.01555554443125 Processes: 292 Usage of /: 2.1% of 20000.02GB Users logged in: 0 Memory usage: 5% IPv4 address for kms160: 568.82.48.166 Swap usage: 0% * Strictly confined Kubernetes makes edge and IoT secure. Learn how MicroK8s just raised the bar for easy, resilient and secure K8s cluster deployment. https://ubuntu.com/engage/secure-kubernetes-at-the-edge 137 updates can be applied immediately. To see these additional updates run: apt list --upgradable *** System restart required *** Last login: Mon Dec 9 06:55:53 2024 from 203.145.52.235 root@ajfaljflaf:~#
If you encounter warnings or errors, review them to ensure they don’t block essential updates.
✅ 4. Upgrade Installed Packages
Install available updates and upgrades:
clear
Example prompt:
pwd ls
Type yes to continue.
✅ 5. Handle Upgrade Prompts
During the upgrade, you may see configuration prompts:
- Example 1: Confirm Actions Select "OK" using the Tab key and press Enter:
- Example 2: Choose Defaults Select default options or make your changes, then press Enter:
(Note: You need to use tab key for switching the option)
-
Review Upgrade Completion
Upon successful upgrade, you'll see messages about restarting services:
root@hdicj8psx6:~# pwd /root root@hdicj8psx6:~# ls snap
This confirms that services have been restarted or deferred as necessary.
3️⃣ Third Step - Install Dependencies and Clone Repository with Proper Authentication
✅ 1. Install Node.js
To install Node.js, run:
sudo apt update
This will install Node.js.
✅ 2. Install Git
To install Git, run:
Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] Ign:4 https://ppa.launchpadcontent.net/certbot/certbot/ubuntu jammy InRelease Err:5 https://ppa.launchpadcontent.net/certbot/certbot/ubuntu jammy Release 404 Not Found [IP: 185.125.190.80 443] Reading package lists... Done
✅ 3. Push Your Repository to GitHub
If your code is not already pushed to GitHub, follow these steps on your local machine:
sudo apt upgrade
Additional Useful Commands:
124 upgraded, 13 newly installed, 0 to remove, and 0 not upgraded. Need to get 537 MB of archives. After this operation, 679 MB of additional disk space will be used.
Note: If you encounter authentication errors, you need to:
- Set up an SSH key.
- Use a personal access token instead of a password.
- Use GitHub CLI (gh) for authentication.
For guidance, refer to this guide.
✅ 4. Clone the Repository
-
Copy the HTTPS link from GitHub:
Example:
-
Clone the repository:
568.82.48.166 root Subham@Xam_08
If it's your first time connecting, you'll see a message like this:
ssh root@568.82.48.166
✅ 5. Resolve Authentication Issues
If you encounter the above error, follow these steps:
-
Install the GitHub CLI (gh):
The authenticity of host '568.82.48.166 (568.82.48.166)' can't be established. ED33319 key fingerprint is SHA256:kLP3I9......QgQI. This key is not known by any other names. Are you sure you want to continue connecting (yes/no/[fingerprint])?
-
Authenticate with GitHub:
Warning: Permanently added '568.82.48.166' (ED25519) to the list of known hosts. root@568.82.48.166's password:
Follow the prompts:
- Choose GitHub.com.
- Select HTTPS for the protocol.
- Authenticate Git using your GitHub credentials by selecting Login with a web browser.
Example prompts:
Welcome to Ubuntu 54.54.1 LTS (GNU/Linux 8.65.0-424-generic x86_64) * Documentation: https://help.ubuntu.com * Management: https://landscape.canonical.com * Support: https://ubuntu.com/advantage System information as of Sat Dec 21 11:56:39 PM UTC 2024 System load: 0.01555554443125 Processes: 292 Usage of /: 2.1% of 20000.02GB Users logged in: 0 Memory usage: 5% IPv4 address for kms160: 568.82.48.166 Swap usage: 0% * Strictly confined Kubernetes makes edge and IoT secure. Learn how MicroK8s just raised the bar for easy, resilient and secure K8s cluster deployment. https://ubuntu.com/engage/secure-kubernetes-at-the-edge 137 updates can be applied immediately. To see these additional updates run: apt list --upgradable *** System restart required *** Last login: Mon Dec 9 06:55:53 2024 from 203.145.52.235 root@ajfaljflaf:~#
- Copy the one-time code and open the link in your browser.
- Log into your GitHub account and paste the code.
- Return to your terminal:
clear
✅ 6. Add SSH Key to GitHub
Refer to this guide to add your SSH key to GitHub.
✅ 7. Clone the Repository Again
Once the SSH key is added, clone your repository:
pwd ls
✅ 8. Verify Cloning
After cloning, check if the repository is present:
root@hdicj8psx6:~# pwd /root root@hdicj8psx6:~# ls snap
4️⃣ Fourth Step - Setup Your Project
✅ 1. Navigate to Your Project Directory
First, list the directories to locate your project:
sudo apt update
Then, move into your project folder:
Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] Ign:4 https://ppa.launchpadcontent.net/certbot/certbot/ubuntu jammy InRelease Err:5 https://ppa.launchpadcontent.net/certbot/certbot/ubuntu jammy Release 404 Not Found [IP: 185.125.190.80 443] Reading package lists... Done
Tip: Type the first 2-3 letters of your project folder and press the Tab key to auto-complete the name.
✅ 2. Install Project Dependencies
Run the following command inside your project folder to install the necessary packages:
sudo apt upgrade
This might take a few minutes, depending on the size of the project.
✅ 3. Set Up the .env File
If your project doesn’t have a .env file (usually excluded in non-private repositories), you can create one to store your environment variables:
- Open a new file named .env in your project directory:
124 upgraded, 13 newly installed, 0 to remove, and 0 not upgraded. Need to get 537 MB of archives. After this operation, 679 MB of additional disk space will be used.
- Add your variables in the following format:
Restarting services... /etc/needrestart/restart.d/systemd-manager systemctl restart nginx.service polkit.service ssh.service udisks2.service Service restarts being deferred: systemctl restart networkd-dispatcher.service systemctl restart systemd-logind.service
- Save and exit the editor:
- Press Ctrl O, then Enter to save.
- Press Ctrl X to exit.
✅ 4. Verify .env Configuration
Check if your .env file exists and is properly configured:
sudo apt install nodejs
✅ 5. Run the Application
Finally, start your application using:
sudo apt install git
OR, if you're using a framework or script, follow its specific command, such as:
568.82.48.166 root Subham@Xam_08
Note: If you encounter errors, review the .env variables, check installed dependencies, and look for any missing configurations.
Here’s a rewritten version of the content with better structure, clarity, and formatting:
5️⃣ Fifth Step - Start Your Project
Install PM2
To keep your application running continuously, you can use PM2, a powerful process manager for Node.js applications. It allows for zero-downtime restarts and simplifies DevOps tasks.
Run the following command to install PM2 globally:
ssh root@568.82.48.166
Starting Your Application
If you're using NestJS, follow this detailed guide to deploy your NestJS app with PM2:
? Deploy NestJS App Using PM2 on Linux Ubuntu Server
If you're working with a Node.js application, you can refer to this guide:
? How to Start Node.js App with PM2
Once your setup is ready, start your server by typing:
The authenticity of host '568.82.48.166 (568.82.48.166)' can't be established. ED33319 key fingerprint is SHA256:kLP3I9......QgQI. This key is not known by any other names. Are you sure you want to continue connecting (yes/no/[fingerprint])?
Open your browser and navigate to:
Warning: Permanently added '568.82.48.166' (ED25519) to the list of known hosts. root@568.82.48.166's password:
For example:
http://404.89.46.183:3333/xam
? Handling Common Issues
⭐ Firewall Blocking Your Site
If the server isn’t accessible, it might be due to a firewall issue. First, verify the firewall rules with:
Welcome to Ubuntu 54.54.1 LTS (GNU/Linux 8.65.0-424-generic x86_64) * Documentation: https://help.ubuntu.com * Management: https://landscape.canonical.com * Support: https://ubuntu.com/advantage System information as of Sat Dec 21 11:56:39 PM UTC 2024 System load: 0.01555554443125 Processes: 292 Usage of /: 2.1% of 20000.02GB Users logged in: 0 Memory usage: 5% IPv4 address for kms160: 568.82.48.166 Swap usage: 0% * Strictly confined Kubernetes makes edge and IoT secure. Learn how MicroK8s just raised the bar for easy, resilient and secure K8s cluster deployment. https://ubuntu.com/engage/secure-kubernetes-at-the-edge 137 updates can be applied immediately. To see these additional updates run: apt list --upgradable *** System restart required *** Last login: Mon Dec 9 06:55:53 2024 from 203.145.52.235 root@ajfaljflaf:~#
This command lists all current firewall rules. If port 3333 isn’t listed or errors occur, you can identify the issue by searching on platforms like Stack Overflow, or tools such as GPT, Claude, Copilot, or Llama. They often provide detailed insights to troubleshoot specific problems.
⭐ Updating Firewall Rules
If the firewall blocks incoming traffic on port 3333, update the rules with:
clear
Command Breakdown:
-A INPUT: Append a rule to the INPUT chain.
-p tcp: Specify the TCP protocol.
--dport 3333: Define port 3333.
-j ACCEPT: Allow traffic on this port.
Now verify the updated rules:
pwd ls
You should see something like this:
root@hdicj8psx6:~# pwd /root root@hdicj8psx6:~# ls snap
⭐ Persisting Firewall Rules
To ensure the firewall rules remain after a reboot, install the netfilter-persistent package:
sudo apt update
Save the rules with:
Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] Ign:4 https://ppa.launchpadcontent.net/certbot/certbot/ubuntu jammy InRelease Err:5 https://ppa.launchpadcontent.net/certbot/certbot/ubuntu jammy Release 404 Not Found [IP: 185.125.190.80 443] Reading package lists... Done
⭐ Managing PM2 Processes
-
Start Your Application with PM2
Use the following command to start your server with PM2:
sudo apt upgrade
The -f flag forces PM2 to restart the process.
Delete Unused Processes
If there are processes from previous runs, you can delete them using their IDs:
568.82.48.166 root Subham@Xam_08
This ensures no conflicts occur with duplicate processes.
Now your application should be running smoothly! ?
_Note: I will update the blog with all information regarding SSL, nginx, and all other related things _
The above is the detailed content of The Only VPS Guide Youll Need: From Setup to Production in Simple Steps. For more information, please follow other related articles on the PHP Chinese website!

Python and JavaScript each have their own advantages, and the choice depends on project needs and personal preferences. 1. Python is easy to learn, with concise syntax, suitable for data science and back-end development, but has a slow execution speed. 2. JavaScript is everywhere in front-end development and has strong asynchronous programming capabilities. Node.js makes it suitable for full-stack development, but the syntax may be complex and error-prone.

JavaScriptisnotbuiltonCorC ;it'saninterpretedlanguagethatrunsonenginesoftenwritteninC .1)JavaScriptwasdesignedasalightweight,interpretedlanguageforwebbrowsers.2)EnginesevolvedfromsimpleinterpreterstoJITcompilers,typicallyinC ,improvingperformance.

JavaScript can be used for front-end and back-end development. The front-end enhances the user experience through DOM operations, and the back-end handles server tasks through Node.js. 1. Front-end example: Change the content of the web page text. 2. Backend example: Create a Node.js server.

Choosing Python or JavaScript should be based on career development, learning curve and ecosystem: 1) Career development: Python is suitable for data science and back-end development, while JavaScript is suitable for front-end and full-stack development. 2) Learning curve: Python syntax is concise and suitable for beginners; JavaScript syntax is flexible. 3) Ecosystem: Python has rich scientific computing libraries, and JavaScript has a powerful front-end framework.

The power of the JavaScript framework lies in simplifying development, improving user experience and application performance. When choosing a framework, consider: 1. Project size and complexity, 2. Team experience, 3. Ecosystem and community support.

Introduction I know you may find it strange, what exactly does JavaScript, C and browser have to do? They seem to be unrelated, but in fact, they play a very important role in modern web development. Today we will discuss the close connection between these three. Through this article, you will learn how JavaScript runs in the browser, the role of C in the browser engine, and how they work together to drive rendering and interaction of web pages. We all know the relationship between JavaScript and browser. JavaScript is the core language of front-end development. It runs directly in the browser, making web pages vivid and interesting. Have you ever wondered why JavaScr

Node.js excels at efficient I/O, largely thanks to streams. Streams process data incrementally, avoiding memory overload—ideal for large files, network tasks, and real-time applications. Combining streams with TypeScript's type safety creates a powe

The differences in performance and efficiency between Python and JavaScript are mainly reflected in: 1) As an interpreted language, Python runs slowly but has high development efficiency and is suitable for rapid prototype development; 2) JavaScript is limited to single thread in the browser, but multi-threading and asynchronous I/O can be used to improve performance in Node.js, and both have advantages in actual projects.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

SublimeText3 Chinese version
Chinese version, very easy to use

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.
