上一页 1 2 3 4 5 6 7 8 9 ··· 25 下一页
摘要: linux空间排查 对于Linux空间排查,可以使用以下命令来查看磁盘空间使用情况: 使用df命令查看磁盘空间使用情况: df -h 该命令将显示每个挂载点的磁盘空间使用情况,包括已用空间、可用空间和挂载点。 使用du命令查看指定目录的磁盘空间使用情况: du -h /path/to/directo 阅读全文
posted @ 2023-12-04 10:19 Arborblog 阅读(70) 评论(0) 推荐(0)
摘要: document.querySelector('video').playbackRate=3 阅读全文
posted @ 2023-12-01 17:23 Arborblog 阅读(103) 评论(0) 推荐(0)
摘要: 注意:在windows下编辑文件会有换行符问题,和linux的不一致出现不能执行的情况 restart.sh sh stop.sh sh startup.sh startup.sh java -jar Server.jar >nohup.out 2>&1 & echo “启动 Server.jar” 阅读全文
posted @ 2023-11-29 17:18 Arborblog 阅读(69) 评论(0) 推荐(0)
摘要: static function OnBeforeResponse(oSession: Session) { //oSession.host 请求的host //oSession.url.Contains 请求host之后的字段 https://mp.weixin.qq.com/mp/getappms 阅读全文
posted @ 2023-11-27 18:23 Arborblog 阅读(69) 评论(0) 推荐(0)
摘要: https://fortune.com/ranking/global500/2023/search/ 阅读全文
posted @ 2023-10-08 14:17 Arborblog 阅读(131) 评论(0) 推荐(0)
摘要: UPDATE table SET created_at = DATE_SUB(created_at, INTERVAL 8 HOUR) where id = 1; 阅读全文
posted @ 2023-09-14 18:59 Arborblog 阅读(33) 评论(0) 推荐(0)
摘要: ``` @ApiOperation("test") @GetMapping("/test") public JsonResult test() { String APP_ID = "aaa"; String APP_SECRET = "bbb"; String API_URL = "/common/ 阅读全文
posted @ 2023-09-07 00:06 Arborblog 阅读(40) 评论(0) 推荐(0)
摘要: RabbitMq 消息延迟消费 ``` message.getMessageProperties().setDelay(5000) ``` 死信就是消息在特定场景下的一种表现形式,这些场景包括: 消息被拒绝(basic.reject / basic.nack),并且requeue = false 消 阅读全文
posted @ 2023-09-06 23:05 Arborblog 阅读(30) 评论(0) 推荐(0)
摘要: 按下win+r键输入regedit,打开注册表在注册表编辑器窗口,依次展开 ``` HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Wallpapers ``` (可以直接复制粘贴这个路径), 点击选中Wall 阅读全文
posted @ 2023-08-21 10:57 Arborblog 阅读(663) 评论(0) 推荐(0)
摘要: ``` yum install -y zip unzip ``` 阅读全文
posted @ 2023-08-15 15:31 Arborblog 阅读(109) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 ··· 25 下一页