码迷,mamicode.com
首页 >  
搜索关键字:iptables No chain    ( 6119个结果
集群搭建
集群搭建之主从复制 主从复制原理 binlog日志 查看binlog日志: mysqlbinlog 文件名称 关闭主从机器的防火墙策略 1、检查防火墙当前的状态service iptables status 2、永久关闭实验机的防火墙chkconfig iptables off 3、打开防火墙chk ...
分类:其他好文   时间:2019-12-30 21:22:14    阅读次数:96
flink任务性能优化
如何提高 Flink 任务性能 一、Operator Chain 为了更高效地分布式执行,Flink 会尽可能地将 operator 的 subtask 链接(chain)在一起形成 task,每个 task 在一个线程中执行。将 operators 链接成 task 是非常有效的优化:它能减少线程 ...
分类:其他好文   时间:2019-12-29 14:44:39    阅读次数:244
yield的应用:多个可迭代对象联合遍历
使用itertools工具类中的chain方法,可以很方便的将多个iterable对象一起遍历. 不过,对于dict类型的iterable对象,只会遍历key. from itertools import chain my_list = [1, 2, 3] my_dict = { 'name': ' ...
分类:其他好文   时间:2019-12-27 23:55:08    阅读次数:129
yield from语法应用
yield from 是python3.3中新增的语法, 语法结构: yield from iterable 在上一篇文章中自定义了一个my_chain函数,现在可以yield from方法对其进行精简 # 自定义一个chain def my_chain(*args, **kwargs): """注 ...
分类:其他好文   时间:2019-12-27 23:30:28    阅读次数:83
python与selenium自动化基础-鼠标和键盘事件
二、鼠标和键盘模拟用户行为 ①导入 ActionChains:from selenium.webdriver.common.action_chains import ActionChains ②用于生成模拟用户行为:ActionChains(driver) ③执行存储行为:perform() ④例: ...
分类:编程语言   时间:2019-12-27 21:56:00    阅读次数:94
K8S搭建教程及部署脚本
部署环境: 主机名 IP地址 系统OS 内核 master 10.5.1.10 CentOS7 Linux master 3.10.0-1062 node1 10.5.1.11 CentOS7 Linux master 3.10.0-1062 etcd/node2 10.5.1.12 CentOS7 ...
分类:其他好文   时间:2019-12-27 19:31:44    阅读次数:232
zookeeper and kafka
kafka安装前期准备: 1,准备三个节点(根据自己需求决定) 2,三个节点上安装好zookeeper(也可以使用kafka自带的zookeeper) 3,关闭防火墙 chkconfig iptables off 一、下载安装包 Kafka官网下载安装包 http://kafka.apache.or ...
分类:其他好文   时间:2019-12-27 15:09:37    阅读次数:94
Oracle-检查点队列
前述 数据库实例有buffercache,buffercache中有很多buffer buffercache里面单独有一块内存区域用来记录,有很多链是chain LRU链:least recent use最近最少使用,LRU上链的是干净块 LRUW链:least recently used writ ...
分类:数据库   时间:2019-12-27 09:44:25    阅读次数:124
CentOS7 防火墙设置
CentOS7 防火墙命令 最近在公司服务器上安装了oracle12c数据库,在用数据库客户端连接的时候,连接不了。最后查找资料的原因是因为oracle的服务端口未开放。 首先还是还是输入以往的开启某一端口的命令:/sbin/iptables -I INPUT -p tcp --dport 1521 ...
分类:其他好文   时间:2019-12-27 09:39:54    阅读次数:84
Linux关闭防火墙命令red hat/CentOs7
一、下面是red hat/CentOs7关闭防火墙的命令! 1:查看防火状态 systemctl status firewalld service iptables status 2:暂时关闭防火墙 systemctl stop firewalld service iptables stop 3:永 ...
分类:系统相关   时间:2019-12-26 16:22:40    阅读次数:200
6119条   上一页 1 ... 44 45 46 47 48 ... 612 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!