美文网首页AlmaLinux
20230108-AlmaLinux 9.1使用体验

20230108-AlmaLinux 9.1使用体验

作者: 負笈在线 | 来源:发表于2023-01-08 21:11 被阅读0次

Alma Linux 9.1安装

镜像选择:Aliyun的almalinux镜像

参考URL:https://zhuanlan.zhihu.com/p/549307723

内存建议1G+

kernel版本为Linux kernel 5.14.0-162

查看kernel版本

# uname -a
Linux localhost.localdomain 5.14.0-162.6.1.el9_1.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Nov 15 07:49:10 EST 2022 x86_64 x86_64 x86_64 GNU/Linux

SSH版本为OpenSSH-8.7p1,默认禁用root登录

使用OpenSSH-8.7p1几点注意:

  • 支持使用 SFTP 协议作为之前使用 SCP/RCP 协议的替换。SFTP 提供更可预测的文件名处理,不需要由远程端的 shell 扩展 glob(3)模式。
  • 支持 Include 方式加载其他配置文件
  • 默认禁止 root 登录, 开启方法

查看ssh版本

# ssh -V
OpenSSH_8.7p1, OpenSSL 3.0.1 14 Dec 2021

允许root用户ssh登录

# cp -p  /etc/ssh/sshd_config /etc/ssh/sshd_config.org
# vi /etc/ssh/sshd_config
增加如下三行配置
PermitRootLogin yes
PubkeyAuthentication yes
PasswordAuthentication yes
# diff   /etc/ssh/sshd_config /etc/ssh/sshd_config.org
41d40
< PermitRootLogin yes
46c45
< PubkeyAuthentication yes
---
> #PubkeyAuthentication yes
66c65
< PasswordAuthentication yes
---
> #PasswordAuthentication yes
重启sshd服务
# systemctl restart sshd
# systemctl status sshd

SSL版本为OpenSSL-3.0.1

  • 支持 enable-ktls Linux Kernel TLS(KTLS)的支持。
  • 对 nginx 卸载SSL 有性能提升

查看ssl版本

# rpm -qa |grep openssl
openssl-pkcs11-0.4.11-7.el9.x86_64
openssl-libs-3.0.1-43.el9_0.x86_64
openssl-3.0.1-43.el9_0.x86_64

4.httpd版本为2.4.53

默认安装的httpd版本为2.4.53,对应的CVE安全漏洞修复和httpd官方2.4.54版本同步。

查看httpd版本
# httpd -v
Server version: Apache/2.4.53 (AlmaLinux)
Server built:   Jul 20 2022 00:00:00
查看完整更新履历
# yum changelog all httpd  

Changelogs for httpd-2.4.53-7.el9.x86_64

* Wed Jul 20 00:00:00 2022 Lubo拧 Uhliarik <luhliari@redhat.com> - 2.4.53-7

- Resolves: #2094997 - CVE-2022-26377 httpd: mod_proxy_ajp: Possible request
  smuggling
- Resolves: #2097032 - CVE-2022-28615 httpd: out-of-bounds read in 
  ap_strcmp_match()
- Resolves: #2098248 - CVE-2022-31813 httpd: mod_proxy: X-Forwarded-For dropped
  by hop-by-hop mechanism
- Resolves: #2097016 - CVE-2022-28614 httpd: out-of-bounds read via ap_rwrite()
- Resolves: #2097452 - CVE-2022-29404 httpd: mod_lua: DoS in r:parsebody
- Resolves: #2097459 - CVE-2022-30522 httpd: mod_sed: DoS vulnerability
- Resolves: #2097481 - CVE-2022-30556 httpd: mod_lua: Information disclosure

相关文章

  • 20230108-AlmaLinux 9.1使用体验

    Alma Linux 9.1安装 略 镜像选择:Aliyun的almalinux镜像[https://mirror...

  • 黄油相机产品体验报告

    1 体验环境 体验机型:iPhone 6 体验系统:iOS 9.1 版本号:version 4.3.1 体验人:G...

  • TapTap产品分析

    一、体验环境 体验机型:华为Mate20 系统版本:EMUI 9.1 APP版本:2.1.1 体验时间:2019....

  • 蚂蜂窝自由行交互体验文档

    体验概览 体验产品:蚂蜂窝自由行 产品版本:7.1.0 设备型号:iPhone6 操作系统:iOS 9.1 体验时...

  • 闲鱼交互体验文档

    体验概览 体验产品:闲鱼 产品版本:5.6.1 设备型号:iPhone6 操作系统:iOS9.1 体验时间:201...

  • 直播吧APP产品体验报告

    直播吧APP产品体验报告 一、产品概述 1体验环境 设备:iPhone 5s 系统:ios 9.1 体验版本:4....

  • same产品体验

    一、体验环境 体验版本:v2.39 设备系统:iPhone5s 操作系统:ios9.1 体验日期:2016/01/...

  • 微信读书体验报告

    一、产品概述 (1) 体验环境 APP版本:微信读书1.1.0 机型:iphone6 系统:iOS9.1 ​体验时...

  • 宝宝树孕育产品体验报告

    一、体验环境 产品版本号终端机型系统版本 体验时间 宝宝树孕育7.8.12 小米Note2 MIUI 9.1稳定版...

  • Xcode、Mac个人常用快捷键

    Xcode9.1 Mac 使用外接键盘 不能像使用苹果笔记本一样使用触控板来操作屏幕:

网友评论

    本文标题:20230108-AlmaLinux 9.1使用体验

    本文链接:https://www.haomeiwen.com/subject/ocyycdtx.html