最近准备好好规划一下知识体系, 加大创作力度, 像写书一样来写作 :) 准备将历史博文搬迁到CSDN, 丰富一下内容; 欢迎新老朋友们继续关注和支持; 我的新博客空间: https://blog.csdn.net/Quner6 ...
分类:
其他好文 时间:
2021-06-09 10:35:27
阅读次数:
0
安装tomcat 1.去官网下载对应版本的压缩包: tomcat官网:http://tomcat.apache.org/ 2.下载完毕在你想安装的目录解压即可 #Tomcat启动和配置 文件夹作用: 启动。关闭Tomcat 访问测试:http://localhost:8080/ 可能遇到的问题: J ...
分类:
系统相关 时间:
2021-06-09 10:31:26
阅读次数:
0
下载NPM (node 文件管理) 第一步下去官网下载nodejs http://nodejs.cn/ 第二步下载npm 由于国内防火墙拦截 下载淘宝的cnpm 粘贴cmd回车 npm install -g cnpm --registry=https://registry.npm.taobao.or ...
分类:
其他好文 时间:
2021-06-09 10:29:38
阅读次数:
0
来自https://www.tutorialspoint.com/gnu_debugger/gdb_quick_guide.htm GDB - Debugging Symbols A Debugging Symbol Table maps instructions in the compiled b ...
分类:
数据库 时间:
2021-06-09 10:29:22
阅读次数:
0
一、记录 1. 实时监控网卡流量脚本:https://www.kafan.cn/edu/5611612.html awk 'BEGIN{ OFMT="%.3f"; devf="/proc/net/dev"; while(("cat "devf) | getline) { if($0 ~ /:/ && ...
分类:
系统相关 时间:
2021-06-08 23:46:04
阅读次数:
0
当你将自定义文件添加到已经由SELinux策略管理的目录中时,如果自定义文件没有适当的SELinux上下文,那么将不会得到预期的结果。restorerecon命令的意思是恢复SELinux上下文。restorecon命令将文件和目录的SELinux安全上下文重置为默认值。这只会重置SELinux上下 ...
分类:
其他好文 时间:
2021-06-08 23:45:03
阅读次数:
0
1.申请域名 https://www.aliyun.com/?utm_content=se_1008955982 2.购买DCDN 3.进行配置 3.1添加域名 3.2输入源站ip 4.配置Dns 域名备案地址https://zhuanlan.zhihu.com/p/53537428 ...
分类:
其他好文 时间:
2021-06-08 23:43:19
阅读次数:
0
官网样例 // Create orders LOAD CSV WITH HEADERS FROM 'https://gist.githubusercontent.com/jexp/054bc6baf36604061bf407aa8cd08608/raw/8bdd36dfc88381995e6823f ...
分类:
其他好文 时间:
2021-06-08 23:43:05
阅读次数:
0
https://juejin.cn/post/6844903859865780231 官方原文 Note that the file property in RollingFileAppender (the parent of TimeBasedRollingPolicy) can be eithe ...
分类:
其他好文 时间:
2021-06-08 23:39:20
阅读次数:
0
pytest测试函数标记 1.pytest.mark.{自定义标签},自定义一个mark标签 https://www.cnblogs.com/zhuxibo/p/13921581.html 2. 跳过用例:@pytest.mark.skip @pytest.mark.skipif 描述:skip和s ...
分类:
其他好文 时间:
2021-06-08 23:37:35
阅读次数:
0