NoRouteToHostException 错误描述: 1 2 3 解决办法:是防火墙的问题 关闭systemctl stop firewalld.service(所有集群中的防火墙都要关闭) Check system time and time zones 错误描述: 1 2 3 4 解决办法: ...
分类:
其他好文 时间:
2018-05-31 17:25:14
阅读次数:
279
1、firewalld的基本使用 启动: systemctl start firewalld 查看状态: systemctl status firewalld 停止: systemctl disable firewalld 禁用: systemctl stop firewalld 2.systemc ...
分类:
系统相关 时间:
2018-05-30 12:39:23
阅读次数:
220
kubernetes中网络报错问题系统环境#系统版本cat/etc/redhat-releaseCentOSLinuxrelease7.4.1708(Core)#kubelet版本kubelet--versionKubernetesv1.10.0#selinux状态getenforceDisabled#系统防火墙状态systemctlstatusfirewalld●firewalld.servic
分类:
Web程序 时间:
2018-05-28 18:31:01
阅读次数:
7046
问题:zun不能创建docker容器,报错:datastore for scope "global" is not initialized 解决:修改docker 服务配置文件: [root@node-172-19-15-230 ~]# cat /usr/lib/systemd/system/doc ...
分类:
其他好文 时间:
2018-05-28 13:43:30
阅读次数:
368
一、docker的常用操作 二、其实用docker search images它就是去hub仓库里面查找:https://hub.docker.com/ -d:后台运行 -p:将主机的端口映射到容器的一个端口 主机端口:容器端口 10.service firewalld status:查看防火墙状态 ...
分类:
其他好文 时间:
2018-05-26 17:53:32
阅读次数:
169
CentOS7使用firewalld打开关闭防火墙与端口 CentOS7使用firewalld打开关闭防火墙与端口 CentOS7使用firewalld打开关闭防火墙与端口 1、firewalld的基本使用 启动: systemctl start firewalld 查看状态: systemctl ...
分类:
其他好文 时间:
2018-05-26 15:59:34
阅读次数:
170
CentOS7默认的防火墙不是iptables,而是firewalle. 安装iptable iptable-service 禁用/停止自带的firewalld服务 设置现有规则 其他规则设定 保存规则设定 开启iptables服务 解决vsftpd在iptables开启后,无法使用被动模式的问题 ...
分类:
其他好文 时间:
2018-05-25 23:29:41
阅读次数:
235
前言 防火墙基于源 IP、目标端口和协议来过滤入站包。因为这种方式中,仅有几个 IP/端口/协议的组合与系统交互,而其它的方式做不到过滤。 iptables 将包通过一系列的规则进行检查,如果包与特定的 IP/端口/协议的组合匹配,规则就会被应用到这个包上,以决定包是被通过、拒绝或丢弃。 firew ...
分类:
其他好文 时间:
2018-05-23 19:04:04
阅读次数:
1300
一.安装前提条件 1.关闭防火墙#systemctl disable firewalld#systemctl stop firewalld 2.关闭selinux#setenforce 0#vi /etc/selinux/config SELINUX=disabled 3.安装docker 17.0 ...
分类:
其他好文 时间:
2018-05-21 16:23:29
阅读次数:
333
CentOS 7 开放防火墙端口 命令 最近公司新的server要求用CentOS7, 发现以前CentOS 6 系列中的 iptables 相关命令不能用了,查了下,发现Centos 7使用firewalld代替了原来的iptables。 使用方法如下: >>> 关闭防火墙 systemctl s ...
分类:
其他好文 时间:
2018-05-21 14:36:07
阅读次数:
168