Get your first dedicated server up and running in under 5 minutes.
Welcome to Cd hosting! This guide will walk you through setting up your first dedicated server.
Navigate to the Pricing page and select the plan that best fits your needs. We offer four tiers:
| Plan | CPU | RAM | Storage | Best For |
|---|---|---|---|---|
| Basic (Free) | 2 Cores | 4GB | 50GB SSD | Development & testing |
| Pro | 4 Cores | 16GB | 250GB NVMe | Small production workloads |
| Enterprise | 8 Cores | 64GB | 1TB NVMe | High-traffic applications |
| Ultimate | 16 Cores | 128GB | 2TB NVMe | Mission-critical systems |
Click Get Started and sign up for a Cd hosting account. You can use your email or sign in with OAuth.
Add your chosen plan to the cart and proceed to checkout. For paid plans, you'll be redirected to our secure Stripe payment page.
Once provisioned, you'll receive an email with your server credentials:
ssh root@your-server-ip
ssh root@your-server-ip
Your server will be ready within 2-5 minutes of order confirmation.
We recommend running these commands after your first login:
# Update system packages
apt update && apt upgrade -y
# Set up a firewall
ufw allow OpenSSH
ufw enable
# Create a non-root user
adduser yourusername
usermod -aG sudo yourusername
# Update system packages
apt update && apt upgrade -y
# Set up a firewall
ufw allow OpenSSH
ufw enable
# Create a non-root user
adduser yourusername
usermod -aG sudo yourusername