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


    1. 机柜参数

    宽度:一般机器都是符合的;
    深度:对应服务器最长的那个边;
    厚度(高度):1/2/3/4U,就是机柜上写的刻度数字,1U=1.75英寸。

    1U=4.45cm
    2U=4.45cm * 2
    3U=4.45cm * 3
    4U=4.45cm * 4 
    
    • 1
    • 2
    • 3
    • 4

    我们的2080/3090/4090服务器都是4U的

    在这里插入图片描述

    2. 装机准备

    检查下面几个内容是否备齐:

    • 电源线:电源线一头是连接服务器的,另一头是DPU的口(我们机房是C14规格的),4根/台

    • 导轨:导轨和它的螺丝,一般是三段式导轨,参考说明书安装:先把最里面的导轨片卸下来安装到服务器上,然后将外导轨(利用上面的卡口)固定在机柜上(如果长度不够可以按照说明书滑动)

    • 网线:问网络中心,接哪个路由器,买多少m的网线?2根/台

    • 插上电源,网线插到指定交换机,询问分配的IP是什么

    3. 机器配置

    3.1 配置ip

    sudo vim /etc/network/interfaces
    
    • 1

    把下面的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
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10

    重启网络使配置生效

    sudo /etc/init.d/networking restart
    
    • 1

    3.2 配置sshd的端口

    注意是修改/etc/ssh/sshd_config,不是/etc/ssh/ssh_config

    sudo vim /etc/ssh/sshd_config
    
    • 1

    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
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13

    重启ssh-server使配置生效

    sudo /etc/init.d/ssh restart
    
    • 1

    3.3 设置dns

    打开 /etc/systemd/resolved.conf,修改为

    sudo vim /etc/systemd/resolved.conf
    
    • 1
    [Resolve]
    DNS=1.1.1.1 1.0.0.1
    #FallbackDNS=
    #Domains=
    LLMNR=no
    #MulticastDNS=no
    #DNSSEC=no
    #Cache=yes
    #DNSStubListener=yes
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9

    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
    
    • 1
  • 相关阅读:
    猴子管理法则
    一文讲清楚Java面向对象的继承关系
    关于Flask高级_RequestParser中的add_argument方法参数详解
    【无标题】
    MySQL必知必会
    从ReentrantLock来学习AQS
    FreeRTOS移植 --- base on gd32f30x + gcc
    创建 PHP 文本验证码
    通关算法题之 ⌈栈和队列⌋
    Explore EP965U HDMI 2.0发射机
  • 原文地址:https://blog.csdn.net/yinglang19941010/article/details/133804613