Select the services running on your current server and get a tailored, interactive step-by-step migration plan. Check off tasks as you go — nothing gets missed.
현재 서버에서 실행 중인 서비스를 선택하면 맞춤형 단계별 이전 계획을 생성합니다. 작업을 완료하면 체크하세요 — 빠뜨리는 항목 없이 안전하게 이전할 수 있습니다.
What's on your current server?
Select all the services and software you have installed.
현재 서버에 설치된 것을 선택하세요
설치된 서비스와 소프트웨어를 모두 선택하세요.
Select Services
Check all software and services currently running on your old server.
서비스 선택
현재 서버에서 실행 중인 소프트웨어와 서비스를 모두 체크하세요.
Generate Plan
Click "Generate Checklist" to get your tailored step-by-step migration plan.
계획 생성
"체크리스트 생성"을 클릭하면 맞춤형 이전 계획이 만들어집니다.
Work Through It
Follow each step in order. Tick items as you complete them to track progress.
단계별 실행
순서대로 각 단계를 따르세요. 완료한 항목을 체크해 진행 상황을 추적하세요.
Copy & Share
Use "Copy as Text" to export remaining items to a notes app or share with your team.
복사 & 공유
"텍스트로 복사"로 남은 항목을 노트 앱에 붙여넣거나 팀과 공유하세요.
mysqldump --all-databases --single-transaction > backup.sql for InnoDB tables (no locking). Transfer via rsync or scp over SSH, then restore with mysql < backup.sql. For large databases (>10GB), consider using Percona XtraBackup for a hot backup with less downtime.mysqldump --all-databases --single-transaction > backup.sql을 사용하세요(잠금 없음). SSH를 통해 rsync 또는 scp로 전송하고, mysql < backup.sql로 복원하세요. 10GB 이상의 대용량 데이터베이스는 다운타임을 줄이기 위해 Percona XtraBackup을 고려하세요.certbot certonly --nginx -d yourdomain.com after DNS has propagated to the new IP. Do not copy the old certs; get fresh ones so the new server's IP is properly associated.certbot certonly --nginx -d yourdomain.com을 실행하세요. 기존 인증서를 복사하지 말고, 새 인증서를 발급받아 새 서버 IP와 올바르게 연결하세요.