Ubuntu 24.04 LTS

Ubuntu میزبانی وب VPS

Popular Debian-based Linux distribution known for ease of use

✓ Ready in about 2 minutes
✓ دسترسی کامل به SSH
✓ ذخیره‌سازی SSD

Ubuntu برنامه‌های VPS

هر ساعت حساب ميشه هر وقت خواستي کنسل کن

1 vCPU • 512 MB • 10 GB SSD
500 GB انتقال
IPv6 only. IPv4 is a $2/month add-on.
$2.50/mo
گسترش →
1 vCPU • 2 GB • 25 GB SSD
1 TB انتقال محبوب
2 vCPU • 4 GB • 80 GB SSD
3 TB انتقال
نمایش همۀ نقشه‌ها ↓
⚡
~2 min
زمان استقرار:
💾
SSD
ذخیره
🔑
root
دسترسی کامل
⏱️
$0.004
هر ساعت، از
Ubuntu is a Debian-based Linux distribution developed by Canonical and one of the most popular operating systems for VPS hosting. It is known for its stability, predictable release cycle, and strong community support. Ubuntu offers regular releases every six months and Long Term Support (LTS) versions every two years, with LTS releases receiving up to five years of security updates, making them ideal for production servers. For VPS environments, Ubuntu provides optimized cloud images that boot quickly, consume minimal resources, and include tools like cloud-init for automated configuration. Ubuntu Server is designed specifically for server workloads, offering a minimal, secure, and efficient setup. With a robust package manager (APT), fast security updates, broad software support, and excellent compatibility with Docker and Kubernetes, Ubuntu is a reliable choice for hosting web applications, databases, and modern cloud services.

Why Choose Ubuntu 24.04 LTS?

Ubuntu-specific features that make it perfect for VPS hosting

✨

LTS Support

Long Term Support releases with 5 years of security updates and maintenance, ensuring stability and reliability for production environments.

✨

APT Package Manager

Advanced Package Tool provides easy software installation, updates, and dependency management with access to over 50,000 packages.

✨

Cloud-Optimized Images

Official cloud images specifically designed for VPS and cloud environments, featuring fast boot times and cloud-init integration.

✨

Strong Security

Prompt security updates, AppArmor integration, and unattended-upgrades for automatic security patching.

✨

Extensive Documentation

Comprehensive official documentation and the largest Linux community providing tutorials, guides, and troubleshooting help.

✨

Modern Stack Support

First-class support for containers, Kubernetes, modern programming languages, and development frameworks out of the box.

چه چیزهایی همراه است؟ Ubuntu VPS

میزبانی لینوکس با کنترل کامل ریشه

⚡

در دقیقه

Your Ubuntu server is usually ready about 2 minutes after checkout.

🔐

دسترسی کامل به ریشه

کنترل کامل بر محیط شما. دسترسی SSH شامل می‌شود. هر نرم‌افزاری را که نیاز دارید نصب کنید.

💾

ذخیره‌سازی SSD

دیسک کارگزار شما روی ذخیره‌سازی Ceph پشتیبانی شده توسط SSD اجرا می‌شود. فضای بیشتری نیاز دارید؟ از پنل کنترل، حجمی از ۱۰۰ گیگابایت تا ۲ تی‌بایت اضافه کنید.

⏱️

حساب ساعتی

ساعت به ساعت حساب ميشه و حداکثر 672 ساعت در ماه، پس يه ماه هيچوقت بيشتر از قيمت برنامه خرج نميشه سرور رو نابود کن و حساب بهم نمياد

🔄

عکسهای لحظه ای و پشتیبان

پشتیبان‌گیری یک افزونهٔ پرداختی اختیاری است: روزانه برای ۳۰٪ از قیمت برنامه (۷ روز نگه داشته شده) یا هفته ای برای ۲۰٪ (۲۸ روز نگه داشته شده).

📊

نمودارهای استفاده

نمودارهای CPU، حافظه، دیسک و شبکه را برای سرور خود در پنل کنترل ببینید.

Perfect For Ubuntu Projects

Common use cases where Ubuntu excels

  • Web Application Hosting: Perfect for hosting websites, web applications, and APIs with nginx, Apache, or Node.js. Ubuntu's stability and extensive package repository make it ideal for production web servers.
  • Database Servers: Excellent platform for MySQL, PostgreSQL, MongoDB, and Redis with optimized packages and strong community support for database administration.
  • Container Orchestration: Industry-leading support for Docker and Kubernetes, making it the go-to choice for microservices architectures and containerized applications.
  • Development and Staging Environments: Create development environments that mirror production systems, with support for all major programming languages and frameworks.
  • CI/CD Pipelines: Run Jenkins, GitLab CI, GitHub Actions runners, or other CI/CD tools with reliable performance and easy integration.
  • Application Servers: Deploy Java, Python, Ruby, PHP, or Node.js applications with straightforward setup and excellent ecosystem support.

Ubuntu پلن‌های VPS

پیکربندی VPS ایده‌آل خود را انتخاب کنید

پلن‌های VPS

پلن‌های میزبانی VPS ابری با کنترل و انعطاف‌پذیری کامل

$ 5.00 /ماه
یا $0.007/ ساعت
1 هسته‌های پردازنده مجازی
2.0 GB RAM
25 GB ذخیره‌سازی SSD
1.00 TB انتقال
Ubuntu از پیش نصب شده
اکنون مستقر شوید
$ 10.00 /ماه
یا $0.015/ ساعت
1 هسته‌های پردازنده مجازی
2.0 GB RAM
55 GB ذخیره‌سازی SSD
2.00 TB انتقال
Ubuntu از پیش نصب شده
اکنون مستقر شوید
$ 20.00 /ماه
یا $0.030/ ساعت
2 هسته‌های پردازنده مجازی
4.0 GB RAM
80 GB ذخیره‌سازی SSD
3.00 TB انتقال
Ubuntu از پیش نصب شده
اکنون مستقر شوید

Getting Started with Ubuntu

Quick guide to deploy and configure your Ubuntu VPS

Step 1: Access Your Ubuntu VPS

Once deployed, connect to your server via SSH:

ssh root@your-server-ip

Step 2: Update System Packages

Always start by updating your package lists and installed packages:

apt update && apt upgrade -y

Step 3: Configure Firewall (UFW)

Ubuntu includes UFW (Uncomplicated Firewall) for easy firewall management:

# Enable firewall
ufw enable

# Allow SSH (important!)
ufw allow 22/tcp

# Allow HTTP/HTTPS
ufw allow 80/tcp
ufw allow 443/tcp

# Check status
ufw status

Step 4: Install Essential Tools

Install commonly needed packages:

apt install -y curl wget git vim build-essential

Step 5: Set Up Your Application

Install your web stack. For example, LEMP stack (Nginx, MySQL, PHP):

# Install Nginx
apt install -y nginx

# Install MySQL
apt install -y mysql-server

# Install PHP
apt install -y php-fpm php-mysql

# Start services
systemctl start nginx
systemctl enable nginx

Next Steps

  • Secure SSH: Disable password authentication, use SSH keys only
  • Set up automatic updates: Install unattended-upgrades package
  • Plan backups: Take free snapshots, or enable paid daily or weekly backups in the control panel
  • Monitor resources: Use htop or install monitoring tools like Netdata

Frequently Asked Questions

Common questions about Ubuntu VPS میزبانی وب VPS

چگونه یک VPS Ubuntu را نصب کنم؟

+

Ubuntu را در هنگام پرداخت انتخاب کنید، یک برنامه را انتخاب کنید، و با کارت یا پی پال پرداخت کنید. سرور معمولاً در حدود ۲ دقیقه آنلاین است، و گذرواژه root به شما ارسال می‌شود.

Which Ubuntu versions are available?

+

نسخه‌های Ubuntu که در حال حاضر ارائه می‌شوند در هنگام ایجاد سرور در checkout فهرست شده‌اند.

چه مدیر بسته ای Ubuntu استفاده می کند؟

+

Ubuntu از APT (apt / apt-get) با بسته‌های.deb استفاده می‌کند. تمام دستورات مدیریت سیستم استاندارد همان‌طور که در راهنمای بالادست Ubuntu مستند شده‌است.

با Ubuntu من دسترسی کامل به سیستم دارم؟

+

بله. از روز اول دسترسی کامل به SSH را دارید: نصب نرم‌افزار، ویرایش پارامترهای هسته و پیکربندی سرور Ubuntu خودتان هر طور که نیاز دارید.

يه Ubuntu VPS چقدر ميشه؟

+

Ubuntu VPS plans start at $2.50/month (IPv6 only; $3.50/month with IPv4) and go up to $640/month for 24 vCPU and 96 GB RAM. Every plan runs the same Ubuntu images.

چرا Ubuntu رو براي VPSم انتخاب کردي؟

+

Ubuntu به یکی از گسترده‌ترین خانواده‌های لینوکس در وب تعلق دارد، با نسخه‌های بسته‌های قابل پیش‌بینی، پنجره‌های پشتیبانی طولانی و سازگاری نرم‌افزاری گسترده.

What workloads is a Ubuntu VPS best for?

+

Ubuntu یک سازگاری قوی برای سرورهای وب با اهداف عمومی، پشته برنامه، میزبان‌های کانتینری است.

مي تونم سرور Ubuntuم رو بعدا ارتقا بدم؟

+

بله. از پنل کنترل به یک طرح بزرگتر ارتقا دهید. تغییر اندازه کارساز را دوباره آغاز می‌کند و سیستم و داده‌های Ubuntu شما بدون نصب مجدد منتقل می‌شوند. انتقال به طرح کوچکتر پشتیبانی نمی‌شود.

پشتیبان‌ها برای Ubuntu در دسترس هستن؟

+

Backups are an optional paid add-on: daily (+30% of the plan price, kept 7 days) or weekly (+20%, kept 28 days). Snapshots are free and capture the full Ubuntu server on demand.

Ubuntu VPS شامل دسترسی SSH است؟

+

بله. شما با گذرواژه root یا کلید SSH اضافه شده در زمان انتشار از طریق SSH وارد می‌شوید و پنل کنترل همچنین یک کنسول وب دارد که بدون SSH کار می‌کند.

میتونم داکر رو روی Ubuntu VPS خودم نصب کنم؟

+

Yes. Docker and containerd run on Ubuntu with the standard APT install path. With full root access there are no restrictions.

ميشه پولم رو پس بگيرم؟

+

بله. در صورتی که VPS Ubuntu شما برای شما مناسب نباشد، در عرض ۳۰ روز از اولین خریدتان با پشتیبانی تماس بگیرید تا درخواست بازپرداخت کنید. ثبت دامنه حذف می‌شود.

Share this guide

آماده برای استقرار شما Ubuntu VPS?

Get your server online in about 2 minutes

دسترسی کامل به ریشه • پرداخت ساعتی • پشتیبانی از طریق بلیط و ایمیل