Hallo alle zusammen,
ich habe phpVirtualBox zur Ergänzung meines Projekts VMware-Server durch VirtualBox zu ersetzen nach der Anleitung ( http://code.google.com/p/phpvirtualbox/wiki/Installation ) zu konfigurieren:
1. Apache installiert.
2. phpvirtualbox in /var/www/phpvirtualbox entpackt
3. "/usr/bin/vboxwebsrv -b --logfile /dev/null >/dev/null" im Terminal ausgeführt b.z.w. es in den Autostart eingetragen.
4. die config.php konfiguriert:
<?php /* * phpVirtualBox configuration * */ class phpVBoxConfig { /* Username / Password for system user that runs VirutalBox */ var $username = 'pepper-jk'; var $password = '****'; /* werde ich jetzt nicht angeben ;) */ var $location = 'http://127.0.0.1/phpvirtualbox'; /* See languages folder for more language options */ var $language = 'en_us'; /* * * Not-so-common options / tweeking * */ // Default host/ip to use for RDP //var $rdpHost = '192.168.1.40'; /* Allow to prompt deletion harddisk files on removal from Virtual Media Manager. If this is not set, files are always kept. If this is set, you will be PROMPTED to decide whether or not you would like to delete the harddisk file(s) when you remove a harddisk from virtual media manager. You may still choose not to delete the file when prompted. */ var $deleteOnRemove = true; /* * File / Folder browser settings */ // Restrict file types var $browserRestrictFiles = '.iso,.vdi,.vmdk,.img,.bin,.vhd,.hdd,.ovf,.ova'; // Restrict locations / folders #var $browserRestrictFolders = 'D:\\,C:\\Users\\Ian'; // Or something like '/home/vbox,/var/ISOs' // Force use of local, webserver based file browser instead of going through vboxwebsrv #var $browserLocal = true; // Disable file / folder browser. #var $browserDisable = true; /* * Misc */ /* Disable any of phpVirtualBox's main tabs */ #var $disableTabVMSnapshots = true; // Snapshots tab #var $disableTabVMConsole = true; // Console tab #var $disableTabVMDescription = true; // Description tab /* Custom screen resolutions for console tab */ #var $consoleResolutions = '640x480,800x600,1024x768'; /* Max number of network cards per VM. Do not set above VirtualBox's limit (typically 8) or below 1 */ var $nicMax = 4; /* Enable Acceleration configuration (normally hidden in the VirtualBox GUI) */ var $enableAccelerationConfig = true; /* Custom VMList sort function in JavaScript */ /* This places running VMs at the top of the list var $vmListSort = 'function(a,b) { if(a.state == "Running" && b.state != "Running") return -1; if(b.state == "Running" && a.state != "Running") return 1; return strnatcasecmp(a.name,b.name); }'; */ /* * Cache tweeking. * * NOT a good idea to set any of these unless asked to do so. */ #var $cachePath = '/tmp'; /* * Cache timings var $cacheExpireMultiplier = 1; var $cacheSettings = array( 'getHostDetails' => 86400, // "never" changes 'getGuestOSTypes' => 86400, 'getSystemProperties' => 86400, 'getInternalNetworks' => 86400, 'getMediums' => 600, 'getVMs' => 2, '__getMachine' => 7200, '__getNetworkAdapters' => 7200, '__getStorageControllers' => 7200, '__getSharedFolders' => 7200, '__getUSBController' => 7200, ); */ }
Auf die Seite komm ich aber ich bekomme keinen Inhalt, als hätte ich Schritt 3 nicht gemacht.
Was könnte ich übersehen haben?
MfG pepper-jk