package cn.irisz.steam import org.apache.flink.api.common.RuntimeExecutionMode import org.apache.flink.streaming.api.scala._ import org.apache.flink.t ...
分类:
其他好文 时间:
2021-06-29 15:38:43
阅读次数:
0
设计模式 什么是设计模式 设计模式是软件开发人员在软件开发过程中面临的一般问题的解决方案 设计模式的类型 模式&描述 包括 创建型模式 这些设计模式提供了一种在创建对象的同时隐藏创建逻辑的方式,而不是使用new 关键字直接实例化对象,这使得程序在判断针对某个给定实例需要创建哪些对象时更加灵活。 工厂 ...
分类:
其他好文 时间:
2021-06-28 18:26:46
阅读次数:
0
package com.zz.bridge.impl; import java.text.DateFormat; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Calendar ...
分类:
其他好文 时间:
2021-06-04 19:35:30
阅读次数:
0
一.生成树协议STP 1.1交换网络环路的产生 sw2和sw3从所有非接收端口转发广播 广播风暴的形成 多帧复制 MAC地址表紊乱 1.2STP简介 STP-Spanning Tree Protocol(生成树协议) 1.3生成树算法 生成树算法分为3个步骤 选择根网桥(Root Bridge) 选 ...
分类:
其他好文 时间:
2021-06-02 15:30:15
阅读次数:
0
1、docker安装wget -P /etc/yum.repos.d/ https://download.docker.com/linux/centos/docker-ce.repoyum list docker-ce --showduplicates | sort -r #查看可以安装的版本yum ...
分类:
其他好文 时间:
2021-06-02 11:38:46
阅读次数:
0
1、使用的基于下面这个链接的示例: https://docs.edgexfoundry.org/1.2/examples/Ch-ExamplesAddingModbusDevice/ 这个示例没有跑通,主要卡在这里的讲解配置文件和下载的版本对应不上,经过两天的摸索,使用如下方式实现 2、使用下面co ...
分类:
数据库 时间:
2021-06-02 11:26:47
阅读次数:
0
先用ifconfig br_name down 停掉网桥 再用brctl delbr br_name 删除网桥 为了方便,我编写了shell脚本来删除网桥 #!/bin/bash #本脚本删除的是br-开头的网桥 BRIDGE_LIST=$(sudo brctl show | cut -f 1 | ...
分类:
其他好文 时间:
2021-05-24 06:19:17
阅读次数:
0
网桥实验 命令法 centos7配成网桥 eth0接入vmnet1 eth1接入vmnet8 yum -y install bridge-utils nmcli connection delete eth0 W brctl show #查看网桥 brctl addbr br0 brctl addif ...
分类:
其他好文 时间:
2021-05-23 23:06:42
阅读次数:
0
Source: Williamson and Shmoys. The Design of Approximation Algorithms. Cambridge University Press, 2010. ...
分类:
其他好文 时间:
2021-05-04 16:42:09
阅读次数:
0
主配置文件 /etc/sysconfig/network-scripts/ifcfg-eth1 里面的详细内容 DEVICE=eth1 网卡名称 TYPE=Ethernet 类型,Ethernet|Bridge ONBOOT=yes 是否激活设备 IPADDR=172.16.55.158 IP地址 ...
分类:
系统相关 时间:
2021-04-21 11:49:19
阅读次数:
0