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