博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
在DELL服务器上升级ESXI 5.5
阅读量:6637 次
发布时间:2019-06-25

本文共 6615 字,大约阅读时间需要 22 分钟。

最近公司升级ESXI到5.5 版本,这个过程大家遇见了各种问题,最后同事写了个在DELL服务器上的升级(重装)流程,豆子觉得很不错,拿出来分享一下。

基本流程:

  1. 重新调整网卡顺序,因为网卡的位置顺序在旧版的R710,R720和新版的R720s服务器上是不同的。如果直接升级5.1到5.5,还是使用旧的排序方式,如果重新安装ESXI 5.5,则会使用新的编排顺序。

  2. 安装服务器,连接网线

  3. 配置iDRAC

  4. 配置IDRAC的DNS和主机的DNS

  5. 初始化IDRAC,设置时间,域名,DNS等等

  6. 升级固件,根据DELL的建议是,重启服务器,从life controller启动之后,使用SUU光盘升级除了网卡之外的所有固件,然后从Dell的CentOS 光盘启动,手动安装网卡的驱动程序(BIN格式),这样可以最大的避免各种意外

  7. 安装或者升级 ESXI5.5,最好先去掉FC的连线,避免误安装到SAN上。从ISO启动之后,指定安装路径(本地磁盘或者SD卡上),一路安装下去即可。

  8. 初始配置。安装完毕之后,按F2登录,配置Managment 网络的网卡,VLAN,IP地址,网关, 打    ESXI Shell和SSH

  9.  ALT-F1切换到Shell, 配置

esxcli network vswitch standard policy failover set -a vmnic0,vmnic1,vmnic4,vmnic5 -l iphash -v vSwitch0
esxcli network vswitch standard portgroup policy failover set -p 
"Management Network" 
-u

然后测试 vmkping 10.0.0.1  (网关地址)

 10. 接下来,进行防火墙,PortGroup相关配置 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# Configure ESX Management Network
# Assing PortGroup to VLAN
esxcli network vswitch standard portgroup set -p=
"Management Network" 
-v=3064
esxcli network vswitch standard uplink remove -u=vmnic5 -v=vSwitch0
esxcli network vswitch standard uplink add -u=vmnic5 -v=vSwitch0
esxcli network vswitch standard uplink remove -u=vmnic4 -v=vSwitch0
esxcli network vswitch standard uplink add -u=vmnic4 -v=vSwitch0
esxcli network vswitch standard uplink remove -u=vmnic1 -v=vSwitch0
esxcli network vswitch standard uplink add -u=vmnic1 -v=vSwitch0
esxcli network ip interface ipv4 set -i=vmk0 -I=10.71.64.107 -N=255.255.255.0 -t=static
esxcli network vswitch standard policy failover set -a=vmnic0,vmnic1,vmnic4,vmnic5 -l=iphash -v=vSwitch0
# If needed inherit policy from vSwitch to Portgroup
esxcli network vswitch standard portgroup policy failover set -p=
"Management Network" 
-u 
# Change Default gateway
esxcfg-route 10.71.64.1
# Remove Portgroup on Management switch
esxcli network vswitch standard portgroup remove -p=
"VM Network" 
-v=vSwitch0
esxcli network vswitch standard uplink remove -u=vmnic0 -v=vSwitch0
esxcli network vswitch standard uplink add -u=vmnic0 -v=vSwitch0
===========================================================================================
# Configure ESX Data Network
esxcli network vswitch standard add -v=vSwitch1
esxcli network vswitch standard uplink add -u=vmnic7 -v=vSwitch1
esxcli network vswitch standard uplink add -u=vmnic6 -v=vSwitch1
esxcli network vswitch standard uplink add -u=vmnic3 -v=vSwitch1
esxcli network vswitch standard uplink add -u=vmnic2 -v=vSwitch1
 
esxcli network vswitch standard portgroup add -p=
"C1_VLAN10" 
-v=vSwitch1
esxcli network vswitch standard portgroup set -p=
"C1_VLAN10" 
-v=10
esxcli network vswitch standard portgroup add -p=
"DMZ" 
-v=vSwitch1
esxcli network vswitch standard portgroup set -p=
"DMZ" 
-v=3127
esxcli network vswitch standard policy failover set -a=vmnic2,vmnic3,vmnic6,vmnic7 -l=iphash -v=vSwitch1
=============================================================================================
# Set DNS and hostname
esxcli system hostname set --host aunswesx07
esxcli network ip dns search add --domain=test.com.au
esxcli network ip dns server add --server=10.70.0.19
esxcli network ip dns server add --server=10.70.0.12
# Suppress warnings about SSH and SSL
esxcli system settings advanced set -o=
"/UserVars/SuppressShellWarning" 
-i=1
================================================================================================
# Syslogs
================================================================================================
esxcli system syslog config set --loghost 
'udp://auttnm01.test.com.au:514'
esxcli network firewall ruleset set --ruleset-id syslog --enabled true
esxcli network firewall refresh 
================================================================================================
# SNMP to OME Server
================================================================================================
esxcli system snmp set --communities=EsxSNMP --enable=yes --targets=10.71.32.203/EsxSNMP
================================================================================================
# NTP
================================================================================================
esxcli network firewall ruleset set --ruleset-id ntpClient --enabled true
echo restrict 127.0.0.1 > /etc/ntp.conf
echo restrict 
default 
kod nomodify notrap noquerynopeer >> /etc/ntp.conf
echo server 10.71.64.125 >> /etc/ntp.conf
echo server 10.71.3.125 >> /etc/ntp.conf
echo driftfile /etc/ntp.drift >> /etc/ntp.conf
/sbin/chkconfig ntpd on
=================================================================================================
esxcli network vswitch standard add -v vSwitchISCSI
esxcli network vswitch standard set -m 9000 -v vSwitchISCSI
esxcli network vswitch standard uplink add -u vmnic11 -v vSwitchISCSI
esxcli network vswitch standard uplink add -u vmnic9 -v vSwitchISCSI
# Adding iSCSI interface
esxcli network vswitch standard portgroup add -p iSCSI0 -v vSwitchISCSI
esxcli network vswitch standard portgroup set -p iSCSI0 -v 10
esxcli network ip interface add -p iSCSI0 -i vmk1
esxcli network ip interface set -m 9000 -i vmk1
esxcli network ip interface ipv4 set -i=vmk1 -I=192.168.0.22 -N=255.255.255.0 -t=static
esxcli network vswitch standard portgroup add -p iSCSI1 -v vSwitchISCSI
esxcli network vswitch standard portgroup set -p iSCSI1 -v 10
esxcli network ip interface add -p iSCSI1 -i vmk2
esxcli network ip interface set -m 9000 -i vmk2
esxcli network ip interface ipv4 set -i=vmk2 -I=192.168.0.23 -N=255.255.255.0 -t=static
# Adding iSCSI VM Port Group
esxcli network vswitch standard portgroup add -p=
"iSCSI_Passthrough" 
-v=vSwitchISCSI
esxcli network vswitch standard portgroup set -p=
"iSCSI_Passthrough" 
-v=4095
# Adding vMotion interface
esxcli network vswitch standard portgroup add -p vMotion -v vSwitchISCSI
esxcli network vswitch standard portgroup set -p vMotion -v 4050
esxcli network ip interface add -p vMotion -i vmk3
esxcli network ip interface set -m 9000 -i vmk3
esxcli network ip interface ipv4 set -i=vmk3 -I=172.0.0.105 -N=255.255.255.0 -t=static
esxcli network vswitch standard policy failover set -a=vmnic9,vmnic11 -v=vSwitchISCSI
# enable vMotion on an interface
vim-cmd hostsvc/vmotion/vnic_set vmk3

11. 配置SAN

  • 配置Brocades

  • 配置Compellent 

  • 重启或者rescan ESXI


12.通过vCenter连入ESXI,通过update Manager PlugIn 连接Baselines,然后升级


13. 重复以上操作,对所有的主机完成安装升级之后,打开HA和DRS等功能

本文转自 beanxyz 51CTO博客,原文链接:http://blog.51cto.com/beanxyz/1571512,如需转载请自行联系原作者
你可能感兴趣的文章
Pomm 1.1.2 发布,专为 PG 设计的 ORM 框架
查看>>
LibreOffice 3.6.6 修复了 50 个 Bug
查看>>
PHREL 1.0.1 发布,主机流量限制工具
查看>>
动画骨骼【Visual C++】游戏开发五十二 浅墨DirectX教程二十 骨骼动画来袭(一)...
查看>>
【ASP.NET 基础】用户控件开发
查看>>
pgbench的使用简介
查看>>
Delphi 指针数组的引用
查看>>
如何在Apache中建立一个新端口
查看>>
谈谈用ASP.NET开发的大型网站有哪些架构方式(成本)
查看>>
地址请求Eclipse中TCPIPMonitor的用法
查看>>
jquery判断对象是否为空并遍历对象
查看>>
最近生活
查看>>
System.Management.ManagementException: 访问遭到拒绝的解决方案
查看>>
设计模式之七(代理模式)
查看>>
data代码C#中struct的2个小问题
查看>>
手机音效手机测试-游戏类
查看>>
python中如何判断一个变量的数据类型?(原创)
查看>>
使用MyEclipse开发 服务器的部署方式(续)
查看>>
27、SQL Server 数据架构创建之数据列的创建
查看>>
HTTP中Get与Post的区别
查看>>