运行环境 linux服务端(172.16.104.132) ## vsftpd安装 [root@vm3 etc]# yum -y install vsftpd ## 关闭防火墙 [root@vm3 etc]# systemctl stop firewalld ## 修改selinux [root@v ...
分类:
其他好文 时间:
2020-11-02 09:45:41
阅读次数:
22
在RHEL7系统中,firewalld防火墙取代了iptables防火墙。iptables与firewalld都不是真正的防火墙,它们都只是用来定义防火墙策略的防火墙管理工具而已,或者说,它们只是一种服务。iptables服务会把配置好的防火墙策略交由内核层面的netfilter网络过滤器来处理,而firewalld服务则是把配置好的防火墙策略交由内核层面的nftables包过滤框架来处理。ipt
分类:
其他好文 时间:
2020-10-26 11:02:31
阅读次数:
20
Centos7使用firewalld查看防火墙状态systemctlstatusfirewalld关闭防火墙临时关闭systemctlstopfirewalld永久关闭需要把开机自启动关闭systemctldisablefirewalld检查服务状态systemctlis-activefirewalld#检查服务是否正常运行systemctlis-enablefirewalld#检查服务是否开机运
分类:
系统相关 时间:
2020-10-21 21:28:47
阅读次数:
39
#查询有那些端口是开启的 [root@xpq ~]# firewall-cmd --list-port 3306/tcp 80/tcp 8000/tcp 9200/tcp #开启22122端口 [root@xpq ~]# firewall-cmd --zone=public --add-port=2 ...
分类:
其他好文 时间:
2020-10-21 20:43:48
阅读次数:
22
Docker安装Zabbix CentOS7 默认使用的是firewall作为防火墙 查看防火墙状态 firewall-cmd --state 停止firewall systemctl stop firewalld.service 开启firewall firewall-cmd --state 禁止 ...
分类:
其他好文 时间:
2020-10-13 17:20:37
阅读次数:
20
ceph分布式存储安装一.环境准备主机名ip软件ceph-1172.16.100.100ceph-deploycephceph-radosgwceph-2172.16.100.101cephceph-radosgwceph-3172.16.100.102cephceph-radosgw1.关闭所有节点防火墙和selinuxsed-i‘s/SELINUX=enforcing/SELINUX=disa
分类:
其他好文 时间:
2020-10-12 20:24:02
阅读次数:
21
虚拟机环境设置关闭swap分区swapoff-a&&sed-i‘/swap/s/^(.*)$/#\1/g‘/etc/fstab&&free-m关闭selinuxsed-i‘s/SELINUX=enforcing/SELINUX=disabled/‘/etc/selinux/config关闭防火墙systemctlstopfirewal
分类:
Web程序 时间:
2020-10-05 21:41:21
阅读次数:
31
1.查看防火墙的状态 [root@localhost HMK]# firewall-cmd --state 查看防火墙的运行状态 not running [root@localhost HMK]# systemctl status firewalld.service 查看防火墙服务是否开启 ● fi ...
分类:
其他好文 时间:
2020-09-24 21:47:59
阅读次数:
46
一、防火墙基本概述 在CentOS7系统中集成了多款防火墙管理工具,默认启用的是firewalld(动态防火墙管理器)防火墙管理工具,Firewalld支持CLI(命令行)以及GUI(图形)的两种管理方式。 对于接触Linux较早的人员对Iptables比较熟悉,但由于Iptables的规则比较的麻 ...
分类:
其他好文 时间:
2020-09-18 03:04:55
阅读次数:
57
系统环境:CentOS7.6系统状态:关闭selinux、firewalld安装依赖包:[root@rhel7Python-3.8.0]#yuminstallzlib-develbzip2bzip2-develreadline-develsqlitesqlite-developenssl-develxzxz-devellibffi-devel(重启)一、下载python3.8版本[root@rhe
分类:
编程语言 时间:
2020-09-18 00:48:22
阅读次数:
44