Install Cent OS (non VM)
Install MySQL (on non VM)
Connect to CentOS VM with SQLYOG or NAVICAT backup DB > Restore DB to CENTOS (non VM)
Copy /home/BOI from VM to Non VM.
Check all permissions on VM files to match on Non VM.
Run /home/BOI/start.sh and troubleshoot errors.
Not really needed but there you go. You will need to open up MySQL to all connection on VM if you don't know how to do this I can post code it is easy. Also start ssh of course, is very easy. Let me look at my VM and add this so you can do it easily.
To start SSH:
create startSSH.sh with the following inside
Code:
/sbin/service sshd start
Run manually or add to startup easily.
To OPEN MySQL to connection to backup and copy from any device with Windows tools, SQLYOG or Navicat:
Code:
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY PASSWORD '*D6CFF1435802A091D736CCC683FE9050E1361A37' WITH GRANT OPTION
Replace % with an IP, % means connect to any IP so this makes it fully open, you will have no errors, the hash is the default VM MySQL password.
That is all you need to do this project.