配置文件12345678910spring: redis: database: 0 host: 127.0.0.1 pool: max-active: 8 max-idle: 8 ma...
Linux查看端口占用
lsof1lsof -i:8080 netstat如果没有则安装 ArchLinux 1sudo pacman -S net-tools Centos 1dnf install net-tools 1netstat -lnp|g...
Ubuntu18.0.4 start-up script
系统信息123456789101112131415161718 ./+o+- yyyyy- -yyyyyy+ OS: Ubuntu...
Windows 终端
什么是 Windows 终端?Windows 终端是一个面向命令行工具和 shell(如命令提示符、PowerShell 和适用于 Linux 的 Windows 子系统 (WSL))用户的新式终端应用程序。 它的主要功能包括多个选项...
镜像站-mirror
win系统镜像itellyou 开源镜像站MirrorZhttps://help.mirrors.cernet.edu.cn/南京大学镜像站https://mirror.nju.edu.cn/腾讯开源镜像站https://mirror...
Docker镜像加速器
Ubuntu/ArchLinux针对Docker客户端版本大于 1.10.0 的用户 您可以通过修改daemon配置文件/etc/docker/daemon.json来使用加速器 12345678sudo mkdir -p ...
nginx配置http到https
nginx配置12345server { listen 80; server_name test.com; rewrite ^(.*)$ https://$host$1 permanent; ...
新冠疫情数据爬取
仓库地址 页面解析选取腾讯新闻的接口 1https://view.inews.qq.com/g2/getOnsInfo?name=disease_h5 模拟请求头 123headers = { 'user...