摘要: 开启 hypver-v 开启功能 dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart 查看wsl poweershell wsl --list --online 阅读全文
posted @ 2024-07-31 14:34 vx_guanchaoguo0 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 在主类开始任务 package com.sugon.dataexchangeplatform; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.Sprin 阅读全文
posted @ 2024-07-31 14:28 vx_guanchaoguo0 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 定义一个密码文件 mysql 不接受管道标准输入 echo -e "[client]\nuser=root\npassword=<my_password>" >> /etc/mysql/my.cnf cat <<EOF > /etc/mysql/my.cnf [client] user=root p 阅读全文
posted @ 2024-07-31 11:49 vx_guanchaoguo0 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 同步模式 from rocketmq.client import PushConsumer, ConsumeStatus import time def callback(msg): print(msg.id, msg.body, msg.get_property('property')) retu 阅读全文
posted @ 2024-07-31 10:37 vx_guanchaoguo0 阅读(73) 评论(0) 推荐(0) 编辑
摘要: 内存 按照进程统计 yum install ps_mem 查看cpu yum install htop 查看进程 yum install psutil 分析python 程序 pip install py-spy -i http://mirrors.aliyun.com/pypi/simple/ - 阅读全文
posted @ 2024-07-31 09:29 vx_guanchaoguo0 阅读(3) 评论(0) 推荐(0) 编辑