문서의 이전 판입니다!


Phpvirtualbox

headless Virtualbox 를 웹으로 접속하여 관리할 수 있다.

http://phpvirtualbox.sourceforge.net/

받은 뒤

웹서비스 폴더에 넣고 접속하면 된다.

초기 접속은 admin/admin

오류

PHP does not have the SOAP extension enabled

soap확장을 설치해준다.

sudo apt-get install php-soap

Could not connect to host (http://127.0.0.1:18083/)

서비스를 완전히 종료 후 다시 시작해 본다. restart 말고.

sudo service vboxweb-service stop
sudo service vboxweb-service start

Error logging in to vboxwebsrv.

유저 아이디 문제 인경우 가 많다. 확인해본다.

This version of phpVirtualBox (5.0-5) is incompatible with VirtualBox 5.1.6. You probably need to download the latest phpVirtualBox 5.1-x.

I was able to get v5.0-5 working with vbox 5.1 by commenting out the version check line and replacing it with a static value in the endpoints/api.php file:

// $response['data']['responseData']['phpvboxver'] = @constant('PHPVBOX_VER');
$response['data']['responseData']['phpvboxver'] = "5.1-0";

87 줄

연결문서