One runs only virtualbox, the other only apache/php/phpvirtualbox.
The idea is to control virtualbox from the remote 2nd server (on the LAN)
I can't seem to get this to work for the life of me, I'm not sure the problem is with phpvirtualbox, I can't even get netstat | grep 18083 to return anything.
What I have done so far post installation configuration wise..
IP's :
Code: Select all
192.168.1.178 = VBOXBM
192.168.1.177 = PHPVMCode: Select all
sudo nano /var/www/html/phpvirtualbox/config.php && sudo service apache2 restartCode: Select all
var $username = ‘free’;
var $password = ‘MyPassWord’;
Code: Select all
var $location = ‘h-t-t-p-://192.168.1.178:18083/’;
Code: Select all
var $servers = array(
array(
'name' => 'London',
'username' => 'free',
'password' => 'MyPassWord',
'location' => h-t-t-p://192.168.1.78:18083/',
'authMaster' => true // Use this server for $
),
);
Code: Select all
sudo usermod -a -G vboxusers freeCode: Select all
sudo nano /etc/default/virtualbox && sudo /etc/init.d/vboxweb-service restartCode: Select all
VBOXWEB_USER=free
VBOXWEB_PASSWD=MyPassWord
VBOXWEB_TIMEOUT=0
VBOXWEB_HOST=192.168.1.178
It just won't work, I have been having a really hard time figuring this out, and/or finding any sort of help.
Any help is much appreciated! I consider myself well versed in Linux so I should be able to follow any directions or get any information, but again, can't seem to get this to work!