准备三台centos7的服务器 两核两G的 关闭防火墙和SELinux systemctl stop firewalld setenforce 0 1.每一台都安装jdk rpm -ivh jdk-8u131-linux-x64_.rpm 准备中... ####################### ...
分类:
其他好文 时间:
2019-12-20 10:20:50
阅读次数:
166
iptables实际上也只是防火墙的配置工具而已。实际上,一个服务,如果可以称的上分析过滤流量,那么就可以称的上为防火墙。 iptables和内核的netfilter 网络过滤器来进行处理。 基于的甄别信息? 源目地址 端口号 协议 应用 firewalld 交给内核层面的nftables包过滤框架... ...
分类:
其他好文 时间:
2019-12-19 00:11:40
阅读次数:
131
1、安装yuminstalliptables-services#安装iptables2、systemctl使用systemctlunmaskfirewalld#执行命令,即可实现取消服务的锁定systemctlmaskfirewalld#下次需要锁定该服务时执行systemctlstartfirewalld.service#启动防火墙systemctlstopfirewalld.service#停
分类:
其他好文 时间:
2019-12-18 17:48:44
阅读次数:
2282
环境准备 建议16GB RAM sed -i '/^SELINUX/s/enforcing/disabled/' /etc/selinux/config systemctl stop firewalld && systemctl disable firewalld systemctl stop Ne ...
分类:
其他好文 时间:
2019-12-18 12:40:42
阅读次数:
118
ELK 官网: https://www.elastic.co/cn/what-is/elk-stack 前提:关闭防火墙,关闭selinux systemctl stop firewalld setenforce 0 系统优化: 1 2 3 4 5 [root@node1 ~]# cat /etc/ ...
分类:
其他好文 时间:
2019-12-16 09:25:47
阅读次数:
94
1.安装依赖环境 yum y install wge gcc c++ .......... 2.关闭Firewalld防火墙和SElinux systemctl stop firewalld systemct disable firewalld cd /etc/selinux/config 把ena ...
分类:
其他好文 时间:
2019-12-15 18:49:33
阅读次数:
116
centos 在线安装 nginx 1. 安装nginx ? 参考文档: http://nginx.org/en/linux_packages.html 中的RHEL/CentOS章节,按照步骤安装repository。 ? ~~~shell sudo yum install yum utils s ...
分类:
其他好文 时间:
2019-12-15 18:18:49
阅读次数:
278
# CentOS 7 安装jumpserver $ setenforce 0 # 可以设置配置文件永久关闭$ systemctl stop iptables.service$ systemctl stop firewalld.service 1、配置python环境:[root@centos7-1 ...
分类:
其他好文 时间:
2019-12-14 15:49:12
阅读次数:
120
第一步首先我们准备centos7虚拟机,关闭防火墙 systemctl stop firewalld setenforce 0 第二步需要安装4个rpm包: 第三步配置最大连接数: 启动elasticsearch: systemctl start elasticsearch 配置elasticsea ...
分类:
其他好文 时间:
2019-12-12 15:18:48
阅读次数:
110
本文主要讲述了firewalld的相关概念与具体的配置设置,环境为Centos7。
分类:
系统相关 时间:
2019-12-11 11:29:27
阅读次数:
113