简单介绍: 1、JumpServer是一款开源堡垒机,它可以帮助企业安全地管理服务器和设备。 2、JumpServer使用Docker和Docker Compose进行部署 3、我们使用Rocky Linux 9.x系统来安装部署JumpServer堡垒机 知识储备: Rocky Linux 9.x系统安装配置图解教程 https://www.osyunwei.com/archives/14859.html 准备篇 1、禁用SELinux rpm -q grubby #确认grubby软件包是否已经安装 grubby --update-kernel ALL --args selinux=0 #添加selinux=0到内核命令行 shutdown -r now #重启系统 getenforce #查看结果为Disabled 2、防火墙设置 Rocky Linux 9.x默认是firewalld防火墙,因为Docker需要iptables,我们这里卸载firewall,安装iptables作为防火墙,并清空防火墙规则 2.1关闭firewall systemctl stop firewalld.service systemctl disable firewalld.service systemctl mask firewalld systemctl stop firewalld yum -y remove firewalld 2.2安装iptables防火墙,开启相应的端口 yum -y install [...]
查看全文