亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

php管理虛擬機,通過代理連接

發布時間:2020-06-24 10:04:13 來源:網絡 閱讀:449 作者:巴啦 欄目:系統運維

1、        進入安裝目錄

Cd C:\Program Files\Oracle\VirtualBox

設置web認證庫為null:

VboxManagesetproperty websrvauthlibrary null

然后開啟服務

 vboxwebsrv --host 0.0.0.0

2、在瀏覽器輸入http://127.0.0.1:18083

在博客下方附件,提供vbox接口文件

寫代碼實現時,vbox_oper操作幫助類

include_once('vboxServiceWrappers.php');
class Vbox_oper
{
   protected $serverIp;
   protected $serverPort = "18083";
   protected $proxy_uname;
   protected $proxy_password;
   protected $proxy_host;
   protected $proxy_port;
   protected $item;
   protected $connection;
   /*
    * 模塊名稱:得到連接
    * 參數說明:
    * 作者:csl
   */
   public function getConn()
   {
       $url = "http://" . $this->serverIp . ":" . $this->serverPort . "/";
       //$this->connection = new SoapClient("vboxwebService.wsdl", array('location' => $url, 'connection_timeout' => 5,));
       $this->connection = new SoapClient("vboxwebService.wsdl", array('location' => $url,'connection_timeout'=>5,
           'proxy_host' => $this->proxy_host, 'proxy_port' => $this->proxy_port,
           'proxy_login' => $this->proxy_uname, 'proxy_password' => $this->proxy_password));
       return $this->connection;
   }
   /*
    * 模塊名稱:初始化代理信息
    * 參數說明:
    * init_proxy 包含:ip,port,username,password
    * 作者:csl
    */
   public function init_proxy($proxy){
       if(!empty($proxy['ip']))
           $this->proxy_host = $proxy['ip'];
       if(!empty($proxy['port']))
           $this->proxy_port = (int)$proxy['port'];
       if(!empty($proxy['username']))
           $this->proxy_uname = $proxy['username'];
       if(!empty($proxy['password']))
           $this->proxy_password = $proxy['password'];
   }
   /*
    * 模塊名稱:初始化服務器信息
    * 參數說明:
    * init_proxy 包含:server_ip,sbmc
    * 作者:csl
    */
   public function init_data($item, $proxy = array())
   {
       $this->serverPort = "18083";
       if(!empty($item['server_ip']))
           $this->serverIp = $item['server_ip'];
       if(!empty( $item['sbmc']))
           $this->name = $item['sbmc'];
       if (!empty($proxy)) {
           $this->init_proxy($proxy);
       }
   }
   /*
    * 模塊名稱:啟動虛擬機
    * 參數說明:
    * 作者:csl
    */
   public function start()
   {
       $this->getConn();
       $websessionManager = new IWebsessionManager($this->connection);
       $virtualbox = $websessionManager->logon("", "");
       $machine = $virtualbox->findMachine($this->name);
       $session = $websessionManager->getSessionObject($virtualbox->handle);
       $state = (string)$machine->state;
       if ($state != 'Running' && $state != 'Paused') {
           $progress = $machine->launchVMProcess($session->handle, "headless", "");
       }
   }
   /*
       * 模塊名稱:關閉虛擬機
       * 參數說明:
       * 作者:csl
       */
   public function stop()
   {
       $this->getConn();
       $websessionManager = new IWebsessionManager($this->connection);
       $virtualbox = $websessionManager->logon("", "");
       $machine = $virtualbox->findMachine($this->name);
       $session = $websessionManager->getSessionObject($virtualbox->handle);
       $state = (string)$machine->state;
       if ($state == 'Running' || $state == 'Paused') {
           $lockType = new LockType($session, 'Shared');
           $machine->lockMachine($session, $lockType->NameMap[1]);
           $iconsole = $session->getConsole();
           $progress = $iconsole->powerDown();
       }
   }
   /*
       * 模塊名稱:重啟虛擬機
       * 參數說明:
       * 作者:csl
       */
   public function restart()
   {
       $this->getConn();
       $websessionManager = new IWebsessionManager($this->connection);
       $virtualbox = $websessionManager->logon("", "");
       $machine = $virtualbox->findMachine($this->name);
       $session = $websessionManager->getSessionObject($virtualbox->handle);
       $state = (string)$machine->state;
       if ($state == 'Running' || $state == 'Paused') {
           $lockType = new LockType($session, 'Shared');
           $machine->lockMachine($session, $lockType->NameMap[1]);
           $iconsole = $session->getConsole();
           $progress = $iconsole->reset();
       } else if ($state == 'PoweredOff') {
           $progress = $machine->launchVMProcess($session->handle, "headless", "");
       }
   }
   /*
   * 模塊名稱:獲取vbox里面所有虛擬機
   * 參數說明:
   * 作者:csl
   */
   public function get_machines(){
       $this->getConn();
       $websessionManager = new IWebsessionManager($this->connection);
       $virtualbox = $websessionManager->logon("", "");
       $machines = $virtualbox->machines;
       return $machines;
   }
}



附件:http://down.51cto.com/data/2366921
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

大宁县| 中阳县| 瑞金市| 浦江县| 广宁县| 盐边县| 上饶县| 奉化市| 思茅市| 临安市| 兴安县| 荆州市| 霍林郭勒市| 寿宁县| 根河市| 翁牛特旗| 乌鲁木齐市| 桂阳县| 酒泉市| 凤山市| 吉水县| 株洲县| 加查县| 黔南| 麟游县| 昭通市| 南开区| 柳林县| 唐海县| 伽师县| 北流市| 铅山县| 英超| 邯郸市| 会东县| 濮阳县| 鲁山县| 凤阳县| 福海县| 福建省| 绥阳县|