Skip to content

Latest commit

 

History

History
54 lines (46 loc) · 3.63 KB

lab3.md

File metadata and controls

54 lines (46 loc) · 3.63 KB

Lab3 - 佈署 Azure Stack HCI OS

Lab3 主要是說明 Hyper-V 安裝 Azure Stack HCI OS 的操作步驟,主要是要設定伺服器名稱、靜態 IP 位址

安裝 Azure Stack HCI OS

  • 透過手動部署安裝,開啟虛擬機器啟動 Azure Stack HCI 安裝精靈,選擇要安裝或接受預設語言設定的語言,然後選取下一步
    GITHUB
    GITHUB
    GITHUB
  • 選取[自訂:只安裝較新版本的 Azure Stack HCI] (advanced)
    GITHUB
  • 確認您要安裝作業系統磁碟機位置,然後選取下一步
    GITHUB
  • [Installing Azure Stack HCI] 頁面等待安裝
    GITHUB
  • 在登入作業系統之前變更使用者的密碼,然後按 enter,進入伺服器設定工作畫面
    GITHUB
    GITHUB
    GITHUB
    GITHUB

Tips.可以自行決定是否要在這個階段更改電腦名稱,需要重開機

  • 啟用遠端桌面,輸入 7 進入 Remote Desktop,選擇 E 啟用,然後選擇 1 僅允許來自執行含有網路層級驗證之遠端桌面的電腦進行連線
    GITHUB
    GITHUB

  • 透過 CMD 更改網路設定,輸入 15 進入 command line
    GITHUB

  • 輸入 netsh interface ipv4 show config,可以看到目前擁有網路卡介面的名稱
    GITHUB

  • 依序更改靜態 IP、DNS Server

    • AzSHCI-node1
    netsh interface ip set address "Ethernet" static 192.168.0.11 255.255.255.0 192.168.0.1
    netsh interface ip set dnsserver "Ethernet" static 192.168.0.4
    
    netsh interface ip set address "Ethernet 2" static 192.168.0.12 255.255.255.0 192.168.0.1
    netsh interface ip set dnsserver "Ethernet 2" static 192.168.0.4
    
    netsh interface ip set address "Ethernet 3" static 192.168.0.13 255.255.255.0 192.168.0.1
    netsh interface ip set dnsserver "Ethernet 3" static 192.168.0.4
    
    • AzSHCI-node2
    netsh interface ip set address "Ethernet" static 192.168.0.21 255.255.255.0 192.168.0.1
    netsh interface ip set dnsserver "Ethernet" static 192.168.0.4
    
    netsh interface ip set address "Ethernet 2" static 192.168.0.22 255.255.255.0 192.168.0.1
    netsh interface ip set dnsserver "Ethernet 2" static 192.168.0.4
    
    netsh interface ip set address "Ethernet 3" static 192.168.0.23 255.255.255.0 192.168.0.1
    netsh interface ip set dnsserver "Ethernet 3" static 192.168.0.4
    

    前往Lab4 - 使用 Windows Admin Center 建立 Azure Stack HCI 叢集