Ana sayfaHome / BlogBlog / REHBERGUIDE
REHBER · 12 AĞU 2026 · 9 DKMIN

WordPress siteni 60 saniyede kendi VPS'ine taşıMove your WordPress to your own VPS in 60 seconds.

EKEmre K.SRE @ meshdataSRE @ meshdata

Paylaşımlı hosting bir noktaya kadar iyidir: o nokta genellikle ilk viral trafiğin, ilk WooCommerce kampanyan ya da komşu sitenin ilk kripto madenciliği macerasıdır. Bu rehberde sıfır kesintiyle kendi sunucuna taşınacağız.Shared hosting is fine until it isn't: usually your first viral spike, your first WooCommerce campaign, or a neighbour's crypto-mining adventure. In this guide we migrate with zero downtime.

İhtiyacın olanlar: mevcut sitene FTP/cPanel erişimi, alan adının DNS paneli ve bir MeshData hesabı. Hepsi bu.You need: FTP/cPanel access to your current site, your domain's DNS panel, and a MeshData account. That's it.

1 · Sunucuyu kurDeploy the server

Panelden Marketplace → WordPress → Web planı → fra1 seç. 60 saniye sonra elinde SSL'li, boş bir WordPress ve bir IP var. wp-admin bilgileri kurulum ekranında bir kez gösterilir — kaydet.In the panel: Marketplace → WordPress → Web plan → fra1. Sixty seconds later you have a blank WordPress with SSL and an IP. wp-admin credentials are shown once — save them.

SSH
ssh [email protected]

2 · Veriyi taşıMove the data

Eski panelden veritabanını dışa aktar, dosyaları rsync ile çek. wp-cli kurulu geldiği için içe aktarma tek komut:Export the database from the old panel, pull files with rsync. wp-cli comes preinstalled, so importing is one command:

BASH
curl -O eski-site.com/yedek.sql
wp db import yedek.sql
wp search-replace 'eski-site.com' 'yeni-site.com'

3 · DNS'i çevir, kesintiyi sıfırlaFlip DNS with zero downtime

Taşımadan bir gün önce TTL'i 60 saniyeye indir. Geçiş anında A kaydını yeni IP'ye çevir; eski sunucu birkaç dakika daha eş kopya kalsın. Kimse fark etmez.Drop TTL to 60s a day before. At cutover, point the A record at the new IP; keep the old server as a mirror for a few minutes. Nobody notices.

TIPKesin dönüşten önce yeni IP'yi bilgisayarının hosts dosyasına yazıp siteyi tam test et.Before the final flip, add the new IP to your hosts file and test the site end-to-end.

4 · Sonrası: yedek ve sıkılaştırmaAfter: backups and hardening

Panelden gece yedeklerini aç (plan ×%20), güvenlik duvarında "Sadece web" ön ayarını uygula ve SSH girişini anahtara çevir. On dakikalık bu üçlü, sorunların %90'ını daha doğmadan bitirir.Enable nightly backups (plan ×20%), apply the "Web only" firewall preset and switch SSH to keys. These ten minutes prevent 90% of future incidents.