[科研琐事] 安装服务器的二三事

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
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值