- 简介
- 目录大纲
- 最新文档
LDAP
Linux基于LDAP进行用户认证 https://blog.csdn.net/weixin_34109408/article/details/92310844 yum install -y openldap-clients nss-pam-ldapd pam_ldap yum -y install openldap-clients nss-pam-ldapd authconfig authco……
local - 2024年11月14日 19:27
使用国内yum源
centos使用yum阿里源 https://developer.aliyun.com/mirror/centos?spm=a2c6h.13651102.0.0.3e221b11p5MXDo https://developer.aliyun.com/mirror/ centos使用yum华为源 https://mirrors.huaweicloud.com/mirrorDetail/5ea14ec……
local - 2024年11月7日 21:44
Linux的服务、程序
查看当前运行的服务: 查看所有服务的状态: 使用 systemctl 命令查看所有服务的状态: bash systemctl list-units --type=service 这个命令会列出所有服务的名称、加载状态、活动状态、启动状态和说明。 查看特定服务的状态: 如果您想要查看特定服务的状态,比如 pushgateway,可以使用: bash systemctl……
local - 2024年11月5日 19:20
Linux script(录制) 命令
Linux script(录制) 命令 linux下有一个script工具,专门录制终端会话中所有输入输出结果,并存放到指定文件中。 创建日志存放目录 mkdir /opt/operation_log 设置用户登陆后自动录制 vi /etc/profile #在文件末尾追加以下内容 `` if [ $UID -ge 500 ] || [ $UID -eq 0 ]; then exec scrip……
local - 2024年8月2日 19:10
使用iptables设置端口敲门(port knocking)后转发
使用iptables设置端口敲门(port knocking)后转发 操作系统:CentOS7.6 配置阿里YUM源: curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo curl -o /etc/yum.repos.d/epel.repo https://mirrors.a……
local - 2024年8月2日 19:05