Windows Server 2012 网络负载均衡
Windows Server 2012 網(wǎng)絡(luò)負(fù)載均衡
網(wǎng)絡(luò)拓?fù)鋱D
準(zhǔn)備工作
1、先安裝2臺(tái)Winows Server 2012服務(wù)器,1臺(tái)域服務(wù)器,1臺(tái)SMB服務(wù)器
2、設(shè)置IP和計(jì)算機(jī)名,關(guān)閉防火墻
3、VMwareWorkstation的測試設(shè)置(不設(shè)置不能安裝Hyper-v)
hypervisor.cpuid.v0 ="FALSE"
mce.enable = "TRUE"
操作步驟
DC服務(wù)器自動(dòng)重啟
主備服務(wù)器、SMB服務(wù)器加入域
域用戶登錄)在主副服務(wù)器安裝IIS、.Net 3.5功能、網(wǎng)絡(luò)負(fù)載均衡
再安裝其他組件
在服務(wù)器管理器中打開以下3項(xiàng)服務(wù):
Function ? ? Discovery Resource Publication
SSDP ? ? Discovery
UPnP Device ? ? Host
需要先在 “高級(jí)共享設(shè)置” 中打開 “啟用網(wǎng)絡(luò)發(fā)現(xiàn)” 功能。
在“網(wǎng)絡(luò)負(fù)載平衡管理器”中建立群集,群集連接主機(jī)時(shí)顯示“RPC連接服務(wù)器不可用”等錯(cuò)誤信息,可嘗試檢查主機(jī)有否打開“Remote Procedure Call(RPC)”和“Remote Procedure Call(RPC)Locator” 服務(wù),并查檢“Remote Procedure Call(RPC)的屬性——依存關(guān)系——依賴服務(wù)” 的“狀態(tài)”是否已經(jīng)全部設(shè)置為 “已經(jīng)啟動(dòng)” 或 “啟動(dòng)類型” 設(shè)置為 “自動(dòng)”。
重啟主備服務(wù)器
在SMB服務(wù)器安裝SMB共享服務(wù)
配置SMB服務(wù)器共享文件夾
(域用戶登錄)在域服務(wù)器創(chuàng)建網(wǎng)絡(luò)負(fù)載平衡
重復(fù)加入Node02
查看主副服務(wù)器網(wǎng)卡是否已打勾
SMB服務(wù)器,增加網(wǎng)頁(index.aspx)
網(wǎng)頁代碼
<htmlxmlns="http://www.w3.org/1999/xhtml"> <headrunat="server"> <title></title> <scripttype="text/C#" runat="server"> protected void Page_Load(object sender,EventArgs e) { String hostName =System.Net.Dns.GetHostName(); Response.Write(hostName+"<br/>"); IPAddress[] addressList = System.Net.Dns.GetHostAddresses(hostName); foreach(IPAddress address in addressList) Response.Write(address.ToString()+"<br/>"); } </script> </head> <body> <formid="form1" runat="server" > <palign="left"> <ahref="http://192.168.1.254/index.html" target="_blank">NewPage</a> </p> </form> </body> </html> |
主、副服務(wù)器IIS鏈接到該網(wǎng)頁
關(guān)閉Node1
注:感謝小磊子提供的測試代碼
轉(zhuǎn)載于:https://blog.51cto.com/234838/1335732
總結(jié)
以上是生活随笔為你收集整理的Windows Server 2012 网络负载均衡的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: display:inline、block
- 下一篇: SVN的使用(服务端与客户端)