1. 机柜参数
宽度:一般机器都是符合的;
深度:对应服务器最长的那个边;
厚度(高度):1/2/3/4U,就是机柜上写的刻度数字,1U=1.75英寸。
1U=4.45cm
2U=4.45cm * 2
3U=4.45cm * 3
4U=4.45cm * 4
我们的2080/3090/4090服务器都是4U的
2. 装机准备
检查下面几个内容是否备齐:
-
电源线:电源线一头是连接服务器的,另一头是DPU的口(我们机房是C14规格的),4根/台
-
导轨:导轨和它的螺丝,一般是三段式导轨,参考说明书安装:先把最里面的导轨片卸下来安装到服务器上,然后将外导轨(利用上面的卡口)固定在机柜上(如果长度不够可以按照说明书滑动)
-
网线:问网络中心,接哪个路由器,买多少m的网线?2根/台
-
插上电源,网线插到指定交换机,询问分配的IP是什么
3. 机器配置
3.1 配置ip
sudo vim /etc/network/interfaces
把下面的ip和dns中的xx换成自己的
# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback
auto eno1
iface eno1 inet static
address xx.xx.xx.xx
netmask 255.255.255.0
gateway 124.16.75.254
dns-nameservers xx.xx.xx.xx xx.xx.xx.xx
重启网络使配置生效
sudo /etc/init.d/networking restart
3.2 配置sshd的端口
注意是修改/etc/ssh/sshd_config,不是/etc/ssh/ssh_config
sudo vim /etc/ssh/sshd_config
port 修改
# $OpenBSD: sshd_config,v 1.101 2017/03/14 07:19:07 djm Exp $
# This is the sshd server system-wide configuration file. See
# sshd_config(5) for more information.
# This sshd was compiled with PATH=/usr/bin:/bin:/usr/sbin:/sbin
# The strategy used for options in the default sshd_config shipped with
# OpenSSH is to specify options with their default value where
# possible, but leave them commented. Uncommented options override the
# default value.
Port xxx
重启ssh-server使配置生效
sudo /etc/init.d/ssh restart
3.3 设置dns
打开 /etc/systemd/resolved.conf,修改为
sudo vim /etc/systemd/resolved.conf
[Resolve]
DNS=1.1.1.1 1.0.0.1
#FallbackDNS=
#Domains=
LLMNR=no
#MulticastDNS=no
#DNSSEC=no
#Cache=yes
#DNSStubListener=yes
DNS=设置的是域名解析服务器的IP地址,这里分别设为1.1.1.1和1.0.0.1
LLMNR=设置的是禁止运行LLMNR(Link-Local Multicast Name Resolution),否则systemd-resolve会监听5535端口。
sudo systemctl restart systemd-resolved