forked from wcypierre/Feathur
-
Notifications
You must be signed in to change notification settings - Fork 0
Convert from SolusVM to Feathur
BlueVM edited this page Nov 7, 2013
·
12 revisions
This guide will describe the general process for converting existing VPS from SolusVM to Feathur. This process does require a decent amount of technical knowledge and may not work 100%. If you need help we are available on IRC. If you'd like us to convert servers for you we can do it for $25 per server, simply submit a ticket on http://feathur.com
Before starting this converter we recommend you:
- Perform a yum update or a apt-get update dependent on your system.
- Check to make sure that screen, wget and rsync are installed on your system.
- Login to the server you intend to convert (you must convert one server at a time). Issue these commands:
mkdir .ssh
cd ~/.ssh
ssh-keygen (hit enter 3 - 5 times, once for each question)
cat id_rsa.pub >> ~/.ssh/authorized_keys
cat id_rsa (copy the key generated and add a server to Feathur)
- Login to your Feathur master server via SSH.
- Copy /var/feathur/Scripts/solusvm-to-feathur.php to /var/feathur/feathur/
cp /var/feathur/Scripts/solusvm-to-feathur.php /var/feathur/feathur/
- Edit /var/feathur/feathur/solusvm-to-feathur.php with your favorite editor and update the provided settings:
// Settings
// Administrative login information (EG YOUR LOGIN)
$sEmail = "";
$sPassword = "";
// Default template id if OpenVZ. (Usually 1, but check database to be sure.)
$sDefaultTemplate = "";
// Converter Type allows for three types of conversions:
// 1 = Convert a single node to Feathur. (Will create an account for each user and add their VPS to it.) (YOU'RE PROBABLY GONNA USE 1)
// 2 = Convert all users so that they have an account on Feathur, but move no VPS yet.
$sConverterType = "";
// If conversion type equals 1, update the variable bellow to specify which node to convert.
$sNodeId = "";
// Only change this if you want to convert just one VPS from the node above. (EG: testing, missed one, etc...)
$sSingleVPS = "";