程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> 關於MYSQL數據庫 >> 用VirtualBox構建MySQL測試環境的筆記

用VirtualBox構建MySQL測試環境的筆記

編輯:關於MYSQL數據庫

網絡環境:

宿主機:Win7
VirtualBox 4.1.4 + Ubuntu 11.10 server 64bit
宿主機使用網線的時候,客戶機在Bridged Adapter模式下,使用Atheros AR8131 PCI-E Gigabit Ethernet Controller上網沒問題。
宿主機使用無線的時候,客戶機在Bridged Adapter模式下,使用可選項裡唯一一個WIFI選項,Microsoft Virtual Wifi Miniport Adapter也無法上網,故棄之。

安裝時候server用dhcp來動態獲取IP地址。


server環境:

復制代碼 代碼如下:
sudo apt-get install tasksel
sudo tasksel install openssh-server


設定固定IP:

復制代碼 代碼如下:
sudo vi /etc/network/interfaces
iface eth0 inet dhcp

iface eth0 inet static
address 192.168.1.78
netmask 255.255.255.0
gateway 192.168.1.1

sudo vi /etc/resolv.conf
nameserver 192.168.1.1

sudo /etc/init.d/networking restart

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved