`
gaojingsong
  • 浏览: 1197511 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
文章分类
社区版块
存档分类
最新评论

警惕CentOS7防火墙

 
阅读更多

警惕CentOS7防火墙

 [root@localhost bin]# ls

bash-java-utils.jar  flink             historyserver.sh     kubernetes-session.sh   mesos-taskmanager.sh       sql-client.sh      start-scala-shell.sh       stop-zookeeper-quorum.sh  zookeeper.sh

config.sh            flink-console.sh  jobmanager.sh        mesos-appmaster-job.sh  pyflink-gateway-server.sh  standalone-job.sh  start-zookeeper-quorum.sh  taskmanager.sh

find-flink-home.sh   flink-daemon.sh   kubernetes-entry.sh  mesos-appmaster.sh      pyflink-shell.sh           start-cluster.sh   stop-cluster.sh            yarn-session.sh

[root@localhost bin]# sh start-cluster.sh 

/opt/flink-1.10.1/bin/config.sh: line 32: syntax error near unexpected token `<'

/opt/flink-1.10.1/bin/config.sh: line 32: `    done < <(find "$FLINK_LIB_DIR" ! -type d -name '*.jar' -print0 | sort -z)'

[root@localhost bin]# ./start-cluster.sh 

Starting cluster.

[INFO] 1 instance(s) of standalonesession are already running on localhost.localdomain.

Starting standalonesession daemon on host localhost.localdomain.

Starting taskexecutor daemon on host localhost.localdomain.

[root@localhost bin]# netstsat -tnpl

bash: netstsat: command not found...

[root@localhost bin]# netstat -tnpl

Active Internet connections (only servers)

Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name    

tcp        0      0 0.0.0.0:111             0.0.0.0:*               LISTEN      1072/rpcbind        

tcp        0      0 192.168.122.1:53        0.0.0.0:*               LISTEN      2068/dnsmasq        

tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      1584/sshd           

tcp        0      0 127.0.0.1:631           0.0.0.0:*               LISTEN      1588/cupsd          

tcp        0      0 127.0.0.1:25            0.0.0.0:*               LISTEN      1937/master         

tcp6       0      0 :::39485                :::*                    LISTEN      17362/java          

tcp6       0      0 :::40002                :::*                    LISTEN      17362/java          

tcp6       0      0 :::43431                :::*                    LISTEN      17691/java          

tcp6       0      0 :::37705                :::*                    LISTEN      17691/java          

tcp6       0      0 127.0.0.1:40938         :::*                    LISTEN      17691/java          

tcp6       0      0 :::6123                 :::*                    LISTEN      17362/java          

tcp6       0      0 :::111                  :::*                    LISTEN      1072/rpcbind        

tcp6       0      0 :::8081                 :::*                    LISTEN      17362/java          

tcp6       0      0 :::22                   :::*                    LISTEN      1584/sshd           

tcp6       0      0 ::1:631                 :::*                    LISTEN      1588/cupsd          

tcp6       0      0 ::1:25                  :::*                    LISTEN      1937/master         

[root@localhost bin]# firewall-cmd --zone=public --list-ports

 

[root@localhost bin]# firewall-cmd --zone=public --add-port=8081/tcp --permanent

success

[root@localhost bin]#  firewall-cmd --state

running

[root@localhost bin]# firewall-cmd --reload 

success

[root@localhost bin]# 

 

 

备注:

1、开放关闭端口

firewall-cmd --zone=public --add-port=5672/tcp --permanent   # 开放5672端口

firewall-cmd --zone=public --remove-port=5672/tcp --permanent  #关闭5672端口

firewall-cmd --reload   # 配置立即生效

 

2、查看防火墙所有开放的端口

firewall-cmd --zone=public --list-ports

 

3.、关闭防火墙

如果要开放的端口太多,嫌麻烦,可以关闭防火墙,安全性自行评估

systemctl stop firewalld.service

 

4、查看防火墙状态

 firewall-cmd --state

 

分享到:
评论

相关推荐

    CentOS7防火墙配置文件

    CentOS7防火墙的启动、停止和禁用配置命令。 包括安装、重启、开启/移除端口并添加规则等相关操作命令。

    Centos7防火墙配置手册

    **FirewallD** 是 CentOS 7 中默认提供的防火墙管理工具,它为用户提供了一个灵活、强大的防火墙配置环境。相较于之前的 **system-config-firewall/lokkit** 静态防火墙模型,FirewallD 的主要优势在于它的动态性...

    CentOS7 Docker防火墙的简单配置教程

    CentOS7 Docker防火墙的简单配置 禁用 firewalld 服务 systemctl disable firewalld systemctl stop firewalld 安装 iptables 防火墙服务 yum install iptables-services 创建 iptables 配置脚本 cat &gt;&gt; /usr/...

    Centos7防火墙firewalld探究与使用.pdf

    Centos7防火墙firewalld探究与使用.pdf 更多资源请点击:https://blog.csdn.net/weixin_44155966

    CentOS7防火墙设置

    CentOS 7 防火墙设置 CentOS 7 防火墙设置是 Linux 操作系统中的一项重要安全配置。在 CentOS 7 中,默认使用的是 firewall 防火墙,但是很多用户更倾向于使用传统的 iptables 防火墙。本文将指导您如何关闭默认...

    CentOS 7-防火墙的配置

    CentOS 7-防火墙的配置

    CentOS7下Firewall防火墙配置用法详解(推荐)

    centos 7中防火墙是一个非常的强大的功能了,这篇文章主要介绍了CentOS7下Firewall防火墙配置用法详解(推荐),小编觉得挺不错的,现在分享给大家,也给大家做个参考。

    CentOS 配置防火墙操作实例

    linux CentOS 6 配置防火墙操作实例

    防火墙白名单设置方法_iptables_centos6

    防火墙白名单设置方法_iptables_centos6 防火墙白名单设置方法_iptables_centos6 防火墙白名单设置方法_iptables_centos6

    Centos7防火墙命令

    ### CentOS 7 防火墙管理:Firewalld与Iptables详解 #### Firewalld 基础操作 **Firewalld** 是 CentOS 7 默认安装的防火墙服务,它提供了动态管理防火墙的功能,可以即时更新规则而无需重启服务。 ##### 查看 ...

    在centos防火墙内禁止某IP的访问.docx

    在centos防火墙内禁止某IP的访问.docx

    CentOS 7.0防火墙操作

    最新CentOS 7.0防火墙操作命令和以前稍微有些区别和变化

    linux之centos7防火墙基本使用详解

    2.systemctl是CentOS7的服务管理工具中主要的工具,它融合之前service和chkconfig的功能于一体。 启动防火墙: systemctl start firewalld.service 关闭防火墙: systemctl stop firewalld.service 重启防火墙: ...

    CentOS7打开关闭防火墙与端口

    CentOS7 打开关闭防火墙与端口 1、firewalld的基本使用 2.systemctl是CentOS7的服务管理工具中主要的工具,它融合之前service和chkconfig的功能于一体。

    centos设置防火墙方法

    centos设置防火墙方法

    详解CentOS7防火墙管理firewalld

    本篇文章主要介绍了CentOS7防火墙管理firewalld,centos 7中防火墙是一个非常的强大的功能了,有兴趣的可以了解一下。

    centos7防火墙基本操作命令_linux-order-firewall.zip

    centos7防火墙基本操作命令_linux-order-firewall

    centos防火墙配置

    centos的防火墙配置,以及端口的开放与关闭

    CentOS 7.0防火墙Firewalld和服务相关配置

    CentOS 7.0防火墙Firewalld和服务相关配置。CentOS 7.0防火墙Firewalld和服务相关配置CentOS 7.0防火墙Firewalld和服务相关配置CentOS 7.0防火墙Firewalld和服务相关配置CentOS 7.0防火墙Firewalld和服务相关配置

    CentOS防火墙学习教程

    CentOS 防火墙学习教程主要介绍了 CentOS 7 中的防火墙设置,包括查看防火墙状态、关闭防火墙、查看端口状态、开启端口、删除端口、批量添加或删除端口等操作。 防火墙状态查看:使用 `systemctl status firewalld....

Global site tag (gtag.js) - Google Analytics