how to make a Minecraft server in India
Back to Blog
Minecraft Server Guides

How to Make a Minecraft Server in India 2026 โ€” 3 Methods, Step by Step

Mayank SharmaMayank Sharma
April 7, 202612 min read

Tutorial

How to Make a Minecraft Server in India 2026 โ€” 3 Methods, Step by Step

๐Ÿ“… April 2026โฑ 10 min read๐ŸŽฎ Java + Bedrock covered๐Ÿ‡ฎ๐Ÿ‡ณ India-specific

Whether you want to play with 5 friends or build a 100-player Indian community, this guide covers every method on how to make a Minecraft server in India โ€” from a one-click panel in 5 minutes to a fully customized Paper server with plugins and DDoS protection.

How to Make a Minecraft Server in India โ€” Choose Your Method
โšก Method 1
Gigapanel
5 min ยท No Linux ยท From โ‚น199/mo
๐Ÿ”ง Method 2
Linux VPS + Paper
30 min ยท Full control ยท From โ‚น1,800/mo
๐Ÿ  Method 3
Home Server
Free ยท Unreliable ยท Not recommended

Java vs Bedrock โ€” Which Edition for India?

Before you learn how to make a Minecraft server in India, decide which edition. Your choice here determines everything. Both are different games with different server software.

Feature Java Edition Bedrock Edition
Platforms PC only (Windows/Mac/Linux) PC, Mobile, Xbox, PS5, Switch
Plugins โœ… Thousands (Paper/Spigot) โŒ Addons only (limited)
Mods โœ… Forge, Fabric, NeoForge โŒ Very limited
Mobile players โš ๏ธ Via GeyserMC plugin โœ… Native support
Performance tuning โœ… Paper = excellent TPS โš ๏ธ Limited options
Server port TCP 25565 UDP 19132
Best for India Communities, SMP, modded Mobile-first, casual play

Our recommendation: Use Java Edition with GeyserMC plugin. You get full plugin support AND mobile/console players can join. Most Indian Minecraft communities use this setup in 2026.

โšก

How to Make a Minecraft Server in India โ€” Method 1: Gigapanel
5 minutes ยท No technical knowledge ยท From โ‚น199/mo

The fastest way to learn how to make a Minecraft server in India without touching Linux or any command line, GigaNodes Gigapanel is the fastest way. One-click install, plugin browser, live console โ€” everything in a web UI. Server is live in under 5 minutes from Noida DC.

1
Go to giganodes.host/games/india/minecraft โ€” choose your plan. Minecraft starts at โ‚น199/mo. Select your RAM and player slots.
2
Pay via UPI (Google Pay, PhonePe, Paytm). Order confirmed instantly.
3
Open Gigapanel โ€” choose server type: Paper (recommended), Vanilla, Fabric, Forge, or Bedrock.
4
Click Start โ€” your server is live. You’ll see your server IP in the dashboard.
5
Share the IP with friends. They add it in Minecraft โ†’ Multiplayer โ†’ Add Server. Done.
Gigapanel Features
โœ… One-click plugin install
โœ… Live console
โœ… Automatic backups
โœ… World upload/download
โœ… Version switcher
โœ… Custom subdomain
โœ… Stormwall DDoS included

Start Minecraft Server โ‚น199 โ†’

๐Ÿ”ง

How to Make a Minecraft Server in India โ€” Method 2: Linux VPS + Paper
30 min setup ยท Root access ยท From โ‚น1,800/mo ยท Best for serious servers

For anyone learning how to make a Minecraft server in India with 50+ players, custom plugins, or modpacks โ€” deploy a GigaNodes Cloud VPS and install Paper yourself. You get full root access, can run multiple servers, and install any software. This is how most serious Indian Minecraft servers run in 2026.

1 Order GigaNodes Cloud VPS

Go to giganodes.host/vps/india. Choose Cloud S (8GB) for up to 50 players, Cloud M (16GB) for 50โ€“100 players. Select Ubuntu 22.04 LTS as OS. Pay via UPI. VPS is live in minutes with a public IP.

# VPS specs for Minecraft India (recommended)
Cloud S โ€” 4 vCPU, 8GB RAM โ€” 30โ€“50 players
Cloud M โ€” 8 vCPU, 16GB RAM โ€” 50โ€“100 players
Cloud L โ€” 16 vCPU, 32GB RAM โ€” 100+ players / modded
2 Connect via SSH

Use any SSH client (PuTTY on Windows, Terminal on Mac) to connect to your VPS IP.

# Connect to your VPS (replace with your IP)
ssh root@YOUR_VPS_IP
3 Update System & Install Java 21

Minecraft 1.20+ requires Java 21. Install it with two commands:

# Update packages first
apt update && apt upgrade -y# Install Java 21 (required for Minecraft 1.20+)
apt install openjdk-21-jdk -y

# Verify installation
java -version
# Should show: openjdk version “21.x.x”

4 Download Paper Server Jar

Paper is the recommended server software โ€” it’s faster than vanilla, fixes bugs, and supports all Spigot/Bukkit plugins. Always use Paper over vanilla Minecraft server.jar.

Get the latest Paper build from papermc.io/downloads/paper โ€” copy the direct download URL for the latest stable build.

# Create server directory
mkdir /opt/minecraft && cd /opt/minecraft# Download Paper (replace URL with latest from papermc.io)
wget -O paper.jar https://api.papermc.io/v2/projects/paper/versions/1.21.4/builds/LATEST/downloads/paper-1.21.4-LATEST.jar

# Run once to generate files
java -Xms2G -Xmx6G -jar paper.jar nogui
# Server will stop โ€” this is normal. eula.txt is now generated.

5 Accept EULA & Configure server.properties
# Accept the EULA (required to run the server)
sed -i ‘s/eula=false/eula=true/’ eula.txt# Edit server settings
nano server.properties

Key server.properties settings for India:
server-name=My India SMP
max-players=50
difficulty=normal
view-distance=8 # Lower = better TPS. Default 10 is too high.
simulation-distance=6
white-list=false # Set true to restrict who can join
online-mode=true # Keep true for security
server-port=25565
6 Start with Screen (Keep Running After SSH Disconnect)
# Install screen (keeps server running after you close SSH)
apt install screen -y# Start a named screen session for your server
screen -S minecraft

# Launch the server (adjust RAM to your plan โ€” -Xmx for max RAM)
java -Xms2G -Xmx6G -XX:+UseG1GC -XX:+ParallelRefProcEnabled -jar paper.jar nogui

# Detach from screen without stopping server: press Ctrl+A then D
# Reattach later with: screen -r minecraft

โœ“ Share IP With Friends

Share your VPS IP address with friends. In Minecraft โ†’ Multiplayer โ†’ Add Server โ†’ enter YOUR_VPS_IP:25565. No port forwarding needed โ€” your VPS has a public IP.

Get Cloud VPS for Minecraft โ†’

๐Ÿ 

How to Make a Minecraft Server in India โ€” Method 3: Home Server (Not Recommended)
Free but unreliable ยท Dynamic IP issues ยท 24/7 PC uptime ยท High latency

You can run a Minecraft server on your home PC โ€” but for Indian servers, home hosting fails fast. Indian ISPs frequently change IP addresses (dynamic IP), meaning your server address changes and friends can’t connect. Home internet upload speeds (5โ€“20 Mbps) are too low for 10+ players. Your PC must stay on 24/7, adding โ‚น1,500โ€“3,000/mo in electricity โ€” more than a proper VPS.

Bottom line: Home hosting works for testing with 2โ€“3 friends for an hour. For any server you want online 24/7 with 10+ players, get a VPS. GigaNodes Gigapanel at โ‚น199/mo costs less than your electricity bill for 24/7 PC operation.

Paper Server Optimization for India

After you learn how to make a Minecraft server in India, these Paper tweaks keep your TPS at 20 even with many players. All edits are in paper.yml or server.properties:

# server.properties โ€” reduce these for better TPS
view-distance=8 # Default 10 is too high. 6-8 is ideal for India.
simulation-distance=6 # Reduces mob AI load significantly
max-tick-time=60000 # Prevents server from crashing on lag spikes# JVM flags for Paper (better GC performance)
java -Xms2G -Xmx6G -XX:+UseG1GC -XX:+ParallelRefProcEnabled \
-XX:MaxGCPauseMillis=200 -XX:G1NewSizePercent=30 \
-XX:G1MaxNewSizePercent=40 -jar paper.jar nogui

Check TPS in-game: Type /tps in the console. 20.0 TPS = perfect. Below 18 = lag. Use Spark plugin (/spark profiler) to find what’s causing lag.

How to Make a Minecraft Server in India โ€” Essential Plugins

Plugin Purpose Download
EssentialsX Must-have โ€” /home, /tp, /warp, /ban, economy basics essentialsx.net
LuckPerms Permissions system โ€” Owner, Admin, Member, Guest roles luckperms.net
WorldGuard Protect spawn, shop areas, prevent griefing dev.bukkit.org
GeyserMC Let mobile/Xbox/Switch players join your Java server geysermc.org
Spark Performance profiler โ€” find TPS drops instantly modrinth.com
CoreProtect Block history โ€” rollback griefing, catch cheaters modrinth.com
Vault Economy bridge โ€” required for most economy plugins dev.bukkit.org
DynMap Live web map of your world โ€” players love it modrinth.com

How to Make a Minecraft Server in India โ€” RAM Guide

Server Type Players RAM Needed GigaNodes Plan
Vanilla / Paper SMP 10โ€“20 4 GB Gigapanel / Cloud S
Paper + Plugins (SMP) 30โ€“50 6โ€“8 GB Cloud S (8GB)
Heavy Plugins + Economy 50โ€“100 12โ€“16 GB Cloud M (16GB)
Modded (100โ€“200 mods) 20โ€“40 16โ€“24 GB Cloud M / Cloud L
Large network / BungeeCord 100+ 32+ GB Cloud L / Cloud XL

๐Ÿ“š More Guides on How to Make a Minecraft Server in India


Top 10 Minecraft Hosting India 2026
Full comparison โ€” best providers ranked.

Best Minecraft Seeds 1.21.4 / 26.1
Top seeds for your new server world.

How to Play Modpacks With Friends
CurseForge, ATM, Better MC โ€” setup guide.

Best Gaming VPS India 2026
Ryzen 9 5950X vs EPYC for game servers.

How to Make a Minecraft Server in India 2026 โ€” FAQ

How much does it cost to make a Minecraft server in India?
GigaNodes Gigapanel starts from โ‚น199/mo โ€” the cheapest way on how to make a Minecraft server in India with proper DDoS protection and Noida DC. A full VPS with root access starts at โ‚น1,800/mo (Cloud S, 8GB RAM, AMD EPYC).
Which is better โ€” Java or Bedrock for Indian Minecraft servers?
Java Edition with GeyserMC is the best choice for Indian servers in 2026. You get full plugin support, better performance with Paper, and mobile/console players can still join via GeyserMC. Pure Bedrock is only better if your community is entirely on mobile or console.
What server software should I use?
Always use Paper for Java Edition. Paper is faster than vanilla, fixes bugs, and supports all Spigot/Bukkit plugins. There is no good reason to use vanilla Minecraft server.jar for a public server. Download Paper from papermc.io.
How do I let mobile players join my Java server?
Install GeyserMC plugin on your Paper server. GeyserMC translates the Bedrock protocol to Java โ€” mobile (iOS/Android), Xbox, PlayStation, and Nintendo Switch players can join your Java server. Download GeyserMC from geysermc.org and place the .jar in your plugins folder.
My server has lag (low TPS) โ€” how to fix?
First reduce view-distance to 6โ€“8 and simulation-distance to 6 in server.properties. Use the Spark plugin (/spark profiler) to find what is causing the lag โ€” usually a plugin, large redstone contraption, or too many entities. Switch to Paper if you haven’t already โ€” it handles TPS significantly better than vanilla or Spigot.

How to Make a Minecraft Server in India โ€” Start Now

Noida DC ยท Stormwall DDoS ยท AMD EPYC ยท UPI Accepted ยท Gigapanel or VPS

DDoS included ยท No port forwarding ยท Instant deploy ยท 24/7 support

Share this article
Mayank Sharma

Written by

Mayank Sharma

Part of the GigaNodes team, bringing you insights on game hosting and cloud infrastructure.