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

用VirtualBox構建MySQL測試情況的筆記

編輯:MySQL綜合教程

用VirtualBox構建MySQL測試情況的筆記。本站提示廣大學習愛好者:(用VirtualBox構建MySQL測試情況的筆記)文章只能為提供參考,不一定能成為您想要的結果。以下是用VirtualBox構建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