netstat -tulnp 简介 Netstat 命令用于显示各种网络相关信息,如网络连接,路由表,接口状态 (Interface Statistics),masquerade 连接,多播成员 (Multicast Memberships) 等等。 输出信息含义 执行netstat后,其输出结果为 ...
分类:
其他好文 时间:
2020-10-18 16:26:39
阅读次数:
22
后台服务 public class Server { public static void main(String[] args) throws IOException { ServerSocket s = new ServerSocket(1122);//服务器端口号 Socket ss = s. ...
分类:
编程语言 时间:
2020-10-18 09:52:35
阅读次数:
26
#!/bin/bash #by wwp 2020-10-14 for ip in `cat ip.list` do { ping -c1 -W1 $ip &>/dev/null if [ $? -eq 0 ];then ssh $ip "sed -ri '/^#UseDNS/cUseDNS no' ...
分类:
其他好文 时间:
2020-10-18 09:49:45
阅读次数:
23
#!/bin/bash#by wwp 2020-10-14#for openssh>ip.listpasswd=6rpm -q expect &>/dev/nullif [ $? -ne 0 ] ; then yum -y install expect >/dev/null && echo "exp ...
分类:
其他好文 时间:
2020-10-18 09:39:56
阅读次数:
15
kafka简介及Spring Boot整合kafka
分类:
编程语言 时间:
2020-10-14 19:58:50
阅读次数:
91
ncpa.cpl打开网卡设置inconfig/release释放IP地址inconfig/renew重新获取IP地址netstat-an查看端口号和建立的连接notepad打开记事本control打开控制面板regedit注册表ctrl+s保存ctrl+x剪切win+e打开计算机win+d最小化所有窗口alt+F4关闭当前窗口teb切换选项ctrl+tab切换标签shift+F10相当于右击shu
持续原创输出,点击上方蓝字关注我 目录 前言Spring Boot 版本如何扩展MVC?如何自定义一个拦截器?什么都不配置为什么依然能运行MVC相关的功能?如何全面接管MVC?【不推荐】为什么@EnableWebMvc一个注解就能够全面接管MVC?Spring Boot相关资料总结 前言 自从用了S ...
分类:
编程语言 时间:
2020-10-13 17:31:09
阅读次数:
29
一、OSI模型七层模型 1、OSI分层模型图 2、TCP/IP四层模型图 二、实验讲解 1、ICMP ping包的封装 2、数据包结构 3、模拟上网过程数据包封装 三、子网划分 1、IP子网划分封装图 ...
分类:
其他好文 时间:
2020-10-13 17:29:59
阅读次数:
24
HyperLPR车牌识别项目代码解读 High Accuracy Chinese Plate Recognition Framework, This research aims at simply developping plate recognition project based on deep ...
分类:
其他好文 时间:
2020-10-12 20:13:48
阅读次数:
23
启动无法启动MySQL首先查看/etc/init.d/是否有mysqld或其他mysql程序没有的话到安装目录bin目录内找相关程序复制到/etc/init.d/或者用systemctlenablemysqld&&systemctlstartmysqld检查端口ss-lnt|grep3306检查进程ps-ef|grepmysql|grep-vgrep启动基本原理/etc/init.
分类:
数据库 时间:
2020-10-08 18:53:11
阅读次数:
30