これが可能かどうかはわかりませんが、私のすべてのGoogleの結果は、RDPコンテンツまたはphpVirtualBoxのインストール方法に関する基本的な情報を提供します。
できることを知りたい中央のphpVirtualBoxを設定し、それを複数のVirtualBoxサーバーに接続しますか?
これにより、同じGUIですべての仮想マシンを一元管理できます。
修正する:
可能!
しかし、私はまだこの概念を単純な用語で考えています。
サーバーとPHPHostがあるとしましょう。
Apacheがサーバー上にある必要がありますか?
PHPVirtualBoxはサーバーに存在する必要がありますか?
VirtualBoxはPHPHostにあるべきですか?
理想的には、サーバーにPHPVirtualBoxを置かずに単に実行したいと思います。
サーバーから:
configure >> /etc/default/virtualbox
/etc/init.d/vboxweb-service start
PHPHostから:
PHPVirtualBox + Apacheのインストール
設定/var/www/html/phpvirtualbox/config.php
私は間違っていますか、それともVBox + PHPVirtualBoxの組み合わせがすべてのサーバーに存在する必要がありますか?
答え1
そうそうできます。彼らの言葉によるとSourceforgeの概要:
最新のWebインターフェイスとして、リモートVirtualBoxインスタンスにアクセスして制御できます。
必要になります。
- phpVirtualBoxを実行するためのApache / PHPを持つサーバー、
- 1つ以上のサーバーがVirtualBox Webサービスを介してホストとして実行され、各ホストは1つ以上のゲストをサポートします。
しかし、これらの間の通信は暗号化されていないSOAPプロトコルに基づいているため、すべてのコンポーネントを同じコンピュータにインストールすることをお勧めします。
詳細については、以下をお読みください。
- Web インターフェイスによる VirtualBox の管理FirstDigest技術ブログでは、
- PHP仮想ボックスArchLinux Wikiから
~からconfig.php-example
// Multiple servers example config. Uncomment (remove /* and */) to use.
// Add ALL the servers you want to use. Even if you have the server set
// above. The default server will be the first one in the list.
/*
var $servers = array(
array(
'name' => 'London',
'username' => 'user',
'password' => 'pass',
'location' => 'http://192.168.1.1:18083/',
'authMaster' => true // Use this server for authentication
),
array(
'name' => 'New York',
'username' => 'user2',
'password' => 'pass2',
'location' => 'http://192.168.1.2:18083/'
),
);
*/