• 基于RHEL 8的Linux发行版的初始服务器设置


    在本文中,为了获取有关安装系统和服务器正在运行所在硬件的信息以及配置诸如系统更新、网络,root权限,配置ssh,管理服务以及其它的特定系统任务,在安装没有图形环境的最小化的服务器后,你首先需要使用的基本步骤。

    第一步:更新系统软件

    1. [root@localhost blctrl]# dnf check-update
    2. [root@localhost blctrl]# dnf update

    一旦软件升级过程结束,为了释放磁盘空间,你通过运行以下命令能够删除所有用所有缓存仓库下载的软件包。

    1. [root@localhost blctrl]# dnf clean all
    2. 27 files removed

    第二部:安装系统工具

    以下这些系统工具对于每天的系统管理任务非常有用:nano, vim编辑器,wegt和curl(用于通过网络下载包), net-tools(用于管理本地网络), lsof(用于查找被进程打开的文件的列表)以及bash-completion(命令行自动补全)。

    [root@localhost blctrl]# dnf install nano vim wget curl net-tools lsof bash-completion -y

    第三步: 设置主机名和网络

    在基于基于RHEL 8的Linux发行版,在仓库中包含了范围很广的工具,它们用于配置和管理网络,从手动更改网络配置到使用诸如ifconfig, ip, nmcli和nmtui的命令。

    一个新手能够使用来配置和管理网络配置(诸如设置网络主机名配合配置静态IP地址)的最简单工具是nmtui图形命令行工具。

    在于基于RHEL 8的Linux发行版中设置主机名

    为了设置或更高系统主机名,运行以下nmtui-hostname命令,它将提示你输入你机器的主机名并且按OK来结束:

     设置静态IP地址

    要配置一个网络接口,运行以下nmtui-edit命令,它将提示你选择你想要从菜单配置的接口:

    [root@localhost blctrl]# nmtui-edit

    一旦你点击Edit,它将提示你设置一个网卡IP设置。当你结束时,用[tab]导航到OK来保存配置并且退出。

     如果你完成了网络配置,你需要通过选择你想要管理的接口运行以下命令来使用新的网络设置并且点击Deactivate/Active选项来停止使用和用IP设置使这个接口工作:

    [root@localhost blctrl]# nmtui-connect

     为了证实网络配置设置,你可以检查接口文件的内容或者你可以发出以下命令:

    1. [root@localhost blctrl]# ifconfig eno1
    2. eno1: flags=4163 mtu 1500
    3. inet 192.168.50.180 netmask 255.255.255.0 broadcast 192.168.50.255
    4. inet6 fe80::1a60:24ff:fea6:ab08 prefixlen 64 scopeid 0x20
    5. ether 18:60:24:a6:ab:08 txqueuelen 1000 (Ethernet)
    6. RX packets 169615 bytes 249723503 (238.1 MiB)
    7. RX errors 0 dropped 6 overruns 0 frame 0
    8. TX packets 38681 bytes 3155419 (3.0 MiB)
    9. TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
    10. device interrupt 16 memory 0x93b80000-93ba0000

    你也可以使用诸如ethool和mii-tool的其它有用网络工具检查网卡速度,网络链接状态并且获取有关机器网卡的信息。

    1. [root@localhost blctrl]# ethtool eno1
    2. Settings for eno1:
    3. Supported ports: [ TP ]
    4. Supported link modes: 10baseT/Half 10baseT/Full
    5. 100baseT/Half 100baseT/Full
    6. 1000baseT/Full
    7. Supported pause frame use: No
    8. Supports auto-negotiation: Yes
    9. Supported FEC modes: Not reported
    10. Advertised link modes: 10baseT/Half 10baseT/Full
    11. 100baseT/Half 100baseT/Full
    12. 1000baseT/Full
    13. Advertised pause frame use: No
    14. Advertised auto-negotiation: Yes
    15. Advertised FEC modes: Not reported
    16. Speed: 1000Mb/s
    17. Duplex: Full
    18. Auto-negotiation: on
    19. Port: Twisted Pair
    20. PHYAD: 1
    21. Transceiver: internal
    22. MDI-X: on (auto)
    23. Supports Wake-on: pumbg
    24. Wake-on: g
    25. Current message level: 0x00000007 (7)
    26. drv probe link
    27. Link detected: yes
    28. [root@localhost blctrl]# mii-tool eno1
    29. eno1: negotiated 1000baseT-FD flow-control, link ok

    你机器网络的一个重要方面,为了检测什么服务正监听在什么端口上、已建立网络连接的状态是什么以及列出被进程打开的所有文件,列出所有打开的网络套接字是重要的。

    1. [root@localhost blctrl]# netstat -tulpn
    2. Active Internet connections (only servers)
    3. Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
    4. tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 1493/sshd
    5. tcp6 0 0 :::22 :::* LISTEN 1493/sshd
    6. [root@localhost blctrl]# ss -tulpn
    7. Netid State Recv-Q Send-Q Local Address:Port Peer Address:Port Process
    8. tcp LISTEN 0 128 0.0.0.0:22 0.0.0.0:* users:(("sshd",pid=1493,fd=5))
    9. tcp LISTEN 0 128 [::]:22 [::]:* users:(("sshd",pid=1493,fd=7))
    10. [root@localhost blctrl]# lsof -i4
    11. COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
    12. NetworkMa 1485 root 27u IPv4 20379 0t0 UDP main-machine:bootpc->RT-AC68U-9750:bootps
    13. sshd 1493 root 5u IPv4 2679 0t0 TCP *:ssh (LISTEN)
    14. sshd 7987 root 5u IPv4 68815 0t0 TCP main-machine:ssh->LAPTOP-NE29DR6I:49483 (ESTABLISHED)
    15. sshd 7992 root 5u IPv4 68819 0t0 TCP main-machine:ssh->LAPTOP-NE29DR6I:49484 (ESTABLISHED)
    16. sshd 8009 blctrl 5u IPv4 68815 0t0 TCP main-machine:ssh->LAPTOP-NE29DR6I:49483 (ESTABLISHED)
    17. sshd 8013 blctrl 5u IPv4 68819 0t0 TCP main-machine:ssh->LAPTOP-NE29DR6I:49484 (ESTABLISHED)

    第四步:创建一个新用户账号

    总是建议有一个具有root权限的一般用户,在需要时,进行管理任务。为了分配root特权给一个一般用户,首先用useradd命令创建一个用户,设置密码并且添加它到管理wheel组。

    1. [root@localhost blctrl]# useradd ylg
    2. [root@localhost blctrl]# passwd ylg
    3. Changing password for user ylg.
    4. New password:
    5. BAD PASSWORD: The password is shorter than 8 characters
    6. Retype new password:
    7. passwd: all authentication tokens updated successfully.
    8. [root@localhost blctrl]# usermod -aG wheel ylg

    要验证新用户有root特权,用这个用户身份登录系统并且用sudo权限运行dnf命令。

    1. [root@localhost blctrl]# su - ylg
    2. Last login: Wed Jul 13 19:54:43 CST 2022 on pts/0
    3. [ylg@main-machine ~]$ pwd
    4. /home/ylg
    5. [ylg@main-machine ~]$ sudo dnf update
    6. We trust you have received the usual lecture from the local System
    7. Administrator. It usually boils down to these three things:
    8. #1) Respect the privacy of others.
    9. #2) Think before you type.
    10. #3) With great power comes great responsibility.
    11. [sudo] password for ylg:
    12. Last metadata expiration check: 0:38:52 ago on Wed 13 Jul 2022 07:16:35 PM CST.
    13. Dependencies resolved.
    14. Nothing to do.
    15. Complete!

     第五步:设置SSH免密登录

    为了增强你服务器安全,通过产生一对SSH key,其包含一个公钥和私钥,为你新用户产生免密授权,你需要创建一对。通过请求SSH私钥连接系统,这增强了你服务器的安全。

    1. [ylg@main-machine ~]$ ssh-keygen -t rsa
    2. Generating public/private rsa key pair.
    3. Enter file in which to save the key (/home/ylg/.ssh/id_rsa):
    4. Created directory '/home/ylg/.ssh'.
    5. Enter passphrase (empty for no passphrase):
    6. Enter same passphrase again:
    7. Your identification has been saved in /home/ylg/.ssh/id_rsa.
    8. Your public key has been saved in /home/ylg/.ssh/id_rsa.pub.
    9. The key fingerprint is:
    10. SHA256:PT2xPltvahWxJOW3j1dbBuFHEvYFaHykn01P6Ho0pVg ylg@main-machine
    11. The key's randomart image is:
    12. +---[RSA 3072]----+
    13. | . oO+o|
    14. | +=oO.|
    15. | .o.E.X|
    16. | . . B %+|
    17. | S o = B.B|
    18. | o + +*|
    19. | + +oo|
    20. | =.o.|
    21. | ...o.|
    22. +----[SHA256]-----+

    一旦产生了这个key,为了保护这个私钥,它将请求你输入密码。你可以输入一个强密码或者如果你想要通过SSH服务器自动化管理任务,选择把密码留空。

    一旦产生了SSH key,你需要通过用远程服务器的用户名和IP地址运行ssh-copy-id命令复制产生的公钥对到一个远程主机。

    1. [ylg@main-machine ~]$ ssh-copy-id blctrl@192.168.50.150
    2. /usr/bin/ssh-copy-id: INFO: Source of key(s) to be installed: "/home/ylg/.ssh/id_rsa.pub"
    3. The authenticity of host '192.168.50.150 (192.168.50.150)' can't be established.
    4. ECDSA key fingerprint is SHA256:iA7/nRdDeBQdFFV3e9o130fVtI5a5ttK63jQX/U+NRc.
    5. Are you sure you want to continue connecting (yes/no/[fingerprint])?
    6. /usr/bin/ssh-copy-id: INFO: attempting to log in with the new key(s), to filter out any that are already installed
    7. The authenticity of host '192.168.50.150 (192.168.50.150)' can't be established.
    8. ECDSA key fingerprint is SHA256:iA7/nRdDeBQdFFV3e9o130fVtI5a5ttK63jQX/U+NRc.
    9. Are you sure you want to continue connecting (yes/no/[fingerprint])? yes
    10. /usr/bin/ssh-copy-id: INFO: 1 key(s) remain to be installed -- if you are prompted now it is to install the new keys
    11. blctrl@192.168.50.150's password:
    12. Number of key(s) added: 1
    13. Now try logging into the machine, with: "ssh 'blctrl@192.168.50.150'"
    14. and check to make sure that only the key(s) you wanted were added.

    一旦复制了SSH key,现在你能够使用私钥作为验证方法尝试登录到你远程的Linux服务器。你应该能够自动登录,而没有服务器请求密码。

    1. [ylg@main-machine ~]$ ssh blctrl@192.168.50.150
    2. Activate the web console with: systemctl enable --now cockpit.socket
    3. Last login: Wed Jul 13 07:28:55 2022 from 192.168.50.19
    4. [blctrl@areadetector ~]$

    第六步:保护远程登录

    通过在SSH配置文件中禁用远程SSH访问root账户,我们将更好地保护我们的服务器。

    [root@main-machine blctrl]# vim /etc/ssh/sshd_conf

    找到内容为"# PermitRootLogin Yes"的行,删除这行开头的#取消注释这行并且修改其为。

    PermitRootLogin no

    之后,重启SSH服务器来应用最新的更改。

    [root@main-machine blctrl]# systemctl restart sshd

    现在通过尝试以root账号登录来确认这个配置,你将得到访问SSH Permission Denied错误。

    1. [blctrl@areadetector ~]$ ssh root@192.168.50.180
    2. The authenticity of host '192.168.50.180 (192.168.50.180)' can't be established.
    3. ECDSA key fingerprint is SHA256:89GIoQ/3MbFYtuL/vghVIcnMswZP+H2Z6IJmtAoNyWg.
    4. Are you sure you want to continue connecting (yes/no/[fingerprint])? yes
    5. Warning: Permanently added '192.168.50.180' (ECDSA) to the list of known hosts.
    6. root@192.168.50.180's password:
    7. Permission denied, please try again.

    有这样的场景:你可能想要在一段不活动时期之后,自动断开到你服务器的所有远程SSH连接。

    第七步:配置防火墙

    在基于RHEL 8的Linux发行版中,默认防火墙是Firewalld,它被用于在服务器上管理iptables规则。要在服务器上使能和启动firewalld,运行以下命令。

    1. [root@main-machine blctrl]# systemctl enable firewalld
    2. [root@main-machine blctrl]# systemctl start firewalld
    3. [root@main-machine blctrl]# systemctl status firewalld
    4. ● firewalld.service - firewalld - dynamic firewall daemon
    5. Loaded: loaded (/usr/lib/systemd/system/firewalld.service; enabled; vendor preset: enabled)
    6. Active: active (running) since Tue 2022-07-12 21:24:59 CST; 1 day 18h ago
    7. Docs: man:firewalld(1)
    8. Main PID: 1426 (firewalld)
    9. Tasks: 3 (limit: 821235)
    10. Memory: 33.2M
    11. CGroup: /system.slice/firewalld.service
    12. └─1426 /usr/libexec/platform-python -s /usr/sbin/firewalld --nofork --nopid

    要开放一个对指定服务(SSH)的进入连接,首先,你需要确认此服务出现在firewalld规则,并且接着通过添加--permanent为这个服务添加规则。

    1. # firewall-cmd --add-service=[tab] # 列出服务
    2. # firewall-cmd --add-service=ssh
    3. # firewall-cmd --add-service=ssh --permanent
    1. [root@main-machine blctrl]# firewall-cmd --add-service=ssh
    2. Warning: ALREADY_ENABLED: 'ssh' already in 'public'
    3. success
    4. firewall-cmd: error: unrecognized arguments: --perament
    5. [root@main-machine blctrl]# firewall-cmd --add-service=ssh --permanent
    6. Warning: ALREADY_ENABLED: ssh
    7. success

    如果你想要开放到诸如HTTP或SMTP的其它服务的进入连接,通过指定服务名称添加规则。

    1. # firewall-cmd --permanent --add-service=http
    2. # firewall-cmd --permanent --add-service=https
    3. # firewall-cmd --permanent --add-service=smtp

    要查看在这个服务器上所有firewall规则,运行以下命令。

    1. [root@main-machine blctrl]# firewall-cmd --permanent --list-all
    2. public
    3. target: default
    4. icmp-block-inversion: no
    5. interfaces:
    6. sources:
    7. services: cockpit dhcpv6-client ssh
    8. ports:
    9. protocols:
    10. forward: no
    11. masquerade: no
    12. forward-ports:
    13. source-ports:
    14. icmp-blocks:
    15. rich rules:

    第八步 移除不想要的服务

    强烈推荐你在安装一个新的RHEL 8服务器后,你需要移除和禁用在服务器上默认运行的不想要服务来减少对服务器的攻击。‘

    要列出在服务器上包括TCP和UDP的所有运行的网络服务,按以下示例说明运行ss命令或netstat命令。

    1. [root@main-machine blctrl]# ss -tulpn
    2. Netid State Recv-Q Send-Q Local Address:Port Peer Address:Port Process
    3. tcp LISTEN 0 128 0.0.0.0:22 0.0.0.0:* users:(("sshd",pid=47358,fd=4))
    4. tcp LISTEN 0 100 127.0.0.1:25 0.0.0.0:* users:(("master",pid=48659,fd=16))
    5. tcp LISTEN 0 128 [::]:22 [::]:* users:(("sshd",pid=47358,fd=6))
    6. tcp LISTEN 0 100 [::1]:25 [::]:* users:(("master",pid=48659,fd=17))
    7. [root@main-machine blctrl]# netstat -tulpn
    8. Active Internet connections (only servers)
    9. Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
    10. tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 47358/sshd
    11. tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN 48659/master
    12. tcp6 0 0 :::22 :::* LISTEN 47358/sshd
    13. tcp6 0 0 ::1:25 :::* LISTEN 48659/master

    以上命令将列出在服务器上默认正在运行的服务,诸如Postfix邮件服务器。如果你不打算在这个服务器上托管邮件系统,你必须停止并且从系统移除它。

    1. [root@main-machine blctrl]# systemctl stop postfix
    2. [root@main-machine blctrl]# systemctl disable postfix
    3. [root@main-machine blctrl]# dnf remove postfix
    4. Dependencies resolved.
    5. ========================================================================================================================================================
    6. ...
    7. Removed:
    8. postfix-2:3.5.8-4.el8.x86_64
    9. Complete!

    除了ss命令和netstat命令外,你还能够运行ps, top或ptree命令发现和识别所有不想要的服务并且从系统移除它们。

    1. [root@main-machine blctrl]# dnf install psmisc
    2. [root@main-machine blctrl]# pstree
    3. systemd─┬─NetworkManager───2*[{NetworkManager}]
    4. ├─atd
    5. ├─auditd───{auditd}
    6. ├─crond
    7. ├─dbus-daemon───{dbus-daemon}
    8. ├─firewalld───2*[{firewalld}]
    9. ├─irqbalance───{irqbalance}
    10. ├─login───bash
    11. ├─lsmd
    12. ├─mcelog
    13. ├─polkitd───11*[{polkitd}]
    14. ├─smartd
    15. ├─sshd───sshd───bash───su───bash───pstree
    16. ├─sshd───sshd───sftp-server
    17. ├─sshd
    18. ├─sssd─┬─sssd_be
    19. │ └─sssd_nss
    20. ├─2*[systemd───(sd-pam)]
    21. ├─systemd-journal
    22. ├─systemd-logind
    23. ├─systemd-udevd
    24. └─tuned───4*[{tuned}]

    第九步: 管理服务

    在基于RHEL 8的Linux发行版中,通过systemctl命令管理所有服务和守护进程,你能够使用这个命令列出所有活动的,正在运行的,退出的或出错的服务。

    1. [root@main-machine blctrl]# systemctl list-units
    2. UNIT LOAD ACTIVE SUB DESCRIPTION
    3. proc-sys-fs-binfmt_misc.automount loaded active waiting Arbitrary Executable File Format>
    4. sys-devices-pci0000:00-0000:00:11.5-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device loaded active plugged WDC_WDS100T2B0A 1
    5. sys-devices-pci0000:00-0000:00:11.5-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda2.device loaded active plugged WDC_WDS100T2B0A 2
    6. sys-devices-pci0000:00-0000:00:11.5-ata1-host0-target0:0:0-0:0:0:0-block-sda.device loaded active plugged WDC_WDS100T2B0A
    7. ...

    要检测一个守护进程或服务在系统启动过程中是否自动被使能,发出以下命令。

    1. [root@main-machine blctrl]# systemctl list-unit-files -t service
    2. UNIT FILE STATE
    3. arp-ethers.service disabled
    4. atd.service enabled
    5. auditd.service enabled
    6. autovt@.service enabled
    7. blk-availability.service disabled
    8. bolt.service static
    9. chrony-dnssrv@.service static
    10. chrony-wait.service disabled
    11. chronyd.service disabled
    12. ...
  • 相关阅读:
    快解析的ERP远程管理解决方案
    常见的加解密及编码总结
    [E2E Test] Python Behave Selenium 一文学会自动化测试
    控制 el-tooltip 组件是否显示:有省略号显示,没有省略号不显示
    VMware Explore 大会解读:VMware 要做多云时代核心技术玩家
    UE中FRotator和Pitch(Roll,Yaw)以及相对朝向的关系
    vue 两种路由模式具体实现
    翻译助手-免费翻译助手下载
    【Python】基本数据类型(一)数字类型
    Feign(黑马程序员)
  • 原文地址:https://blog.csdn.net/yuyuyuliang00/article/details/125759674