上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 53 下一页
摘要: 前言 ​ expect是一种脚本语言,它能够代替人工实现与终端的交互,开发人员不必再守候在电脑旁边输入密码,或是根据系统的输出再运行相应的命令。 ​ 借助expect,可以将交互过程写在一个脚本上,使之自动化完成所需要的交互操作。形象的说,像ssh登录,ftp登录等都符合交互的定义。 1.判断当前系 阅读全文
posted @ 2022-04-01 23:58 黄河大道东 阅读(2978) 评论(0) 推荐(0)
摘要: SpringBoot Controller接收参数的几种常用方式 第一类:请求路径参数 1、@PathVariable 获取路径参数。即url/{id}形式的参数。 2、@RequestParam 获取查询参数。即url?name=张三形式的参数。 举例 GET http://localhost:8 阅读全文
posted @ 2022-03-30 22:45 黄河大道东 阅读(753) 评论(0) 推荐(0)
摘要: Kafka 可视化工具 kafka可视化web工具kafdrop 阅读全文
posted @ 2022-03-26 14:57 黄河大道东 阅读(78) 评论(0) 推荐(0)
摘要: iptables详解 iptables命令使用详解 阅读全文
posted @ 2022-03-26 11:29 黄河大道东 阅读(89) 评论(0) 推荐(0)
摘要: nginx静态资源服务器简单配置 nginx静态资源文件无法访问,403 forbidden错误 阅读全文
posted @ 2022-03-26 11:20 黄河大道东 阅读(70) 评论(0) 推荐(0)
摘要: 【错误】 Host is blocked because of many connection errors; unblock with ‘mysqladmin flush-hosts’; 【原因】 同一个ip在短时间内产生太多(超过mysql数据库max_connection_errors的最大值 阅读全文
posted @ 2022-03-25 09:00 黄河大道东 阅读(309) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/l-y-h/p/12859477.html#_label1_2 https://blog.csdn.net/u011781521/article/details/79686091 阅读全文
posted @ 2022-03-24 08:59 黄河大道东 阅读(60) 评论(0) 推荐(0)
摘要: 获取某个数据库下的所有表名信息 select * from information_schema.tables where table_schema='库名称' 获取某个库某个表的字段信息 select * from information_schema.columns where table_sc 阅读全文
posted @ 2022-03-23 17:43 黄河大道东 阅读(92) 评论(0) 推荐(0)
摘要: 解决方案 https://www.cnblogs.com/wangguishe/p/15497923.html 阅读全文
posted @ 2022-03-23 10:53 黄河大道东 阅读(251) 评论(0) 推荐(0)
摘要: 生成自建证书文件 # 1、生成私钥文件,输入秘钥:1234 openssl genrsa -des3 -out server.key 2048 # 查看私钥内容 openssl rsa -text -in server.key # 2、根据私钥创建证书签名请求 CSR 文件 openssl req 阅读全文
posted @ 2022-03-22 23:10 黄河大道东 阅读(59) 评论(0) 推荐(0)
上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 53 下一页