Your Complete Guide to Moving from Binero
Binero no longer offers VPS services. This guide will help you move everything to No-Ack Hosting in under an hour.
Step 1: Choose the Right VPS Plan
Our most popular plans for former Binero customers:
- KVM VPS 1G (€6/month) — perfect for small websites and dev servers
- KVM VPS 2G (€11/month) — great for WordPress, email, medium traffic
- KVM VPS 4G (€22/month) — for more demanding applications
- KVM VPS 8G (€27/month) — high performance, databases, multiple sites
Need custom specs? Proxmox Own Design from €6/month.
Step 2: Order and Get Access
Order at noackhosting.com/vps. You’ll get SSH access within minutes.
Step 3: Prepare Your Old Server
# List all running services
systemctl list-units --type=service --state=running
# Export databases
mysqldump --all-databases > all_databases.sql
# or for PostgreSQL:
pg_dumpall > all_databases.sql
# Note installed packages
dpkg --get-selections > installed_packages.txt
Step 4: Transfer Data with rsync
# Sync web files
rsync -avzP /var/www/ root@new-server:/var/www/
# Sync configurations
rsync -avzP /etc/nginx/ root@new-server:/etc/nginx/
rsync -avzP /etc/apache2/ root@new-server:/etc/apache2/
# Transfer databases
scp all_databases.sql root@new-server:/tmp/
Step 5: Restore on the New Server
# Import databases
mysql < /tmp/all_databases.sql
# Install same packages
dpkg --set-selections < installed_packages.txt
apt-get dselect-upgrade
Step 6: Update DNS
Point your domains to your new server’s IP address. TTL tip: lower the TTL to 300 seconds before migrating, so the switch happens faster.
Need Help?
We’re happy to help with the migration — contact us and we’ll sort it out together.