debug Instruct server to write debug information to log
drop databasename 删除一个数据库。
flush-hosts 刷新所有缓存的主机。
flush-logs刷新日志。
flush-status 刷新状态。
flush-tables 清除所有表。
flush-threads 刷新线程缓存。
flush-privileges 重载权限表。
kill id,id,...杀掉线程。
password [new-password] 修改密码。
old-password [new-password] Change old password to new-password in old format
ping 检查数据库服务的存活状态。
processlist 显示活动线程列表。
reload重载权限表。
refresh 刷新所有表并关闭再打开日志文件。
shutdown 使用安全的方式关闭数据库。
status获取服务器的状态消息。
start-slave 在slave server上启动MySQL复制功能。
stop-slave在slave server上停止MySQL复制功能。
variables 打印可用变量信息。
version 获取服务器版本信息。
如果是windows的话, 在任务管理器中可查看到相关信息, 如果想查询更多, 如CPU温度,风扇转速等, 则可在IPMI下查看(需要服务器具备)--- 美国服务器,香港服务器,韩国服务器 - 云邦互联(www.yunzz.net)
>>>import psutil>>>psutil.cpu_times()
scputimes(user=3961.46, nice=169.729, system=2150.659, idle=16900.540, iowait=629.59, irq=0.0, softirq=19.42, steal=0.0, guest=0, nice=0.0)
>>>
>>>for x in range(3):
... psutil.cpu_percent(interval=1)
...
4.0
5.9
3.8
>>>
>>>for x in range(3):
... psutil.cpu_percent(interval=1, percpu=True)
...
[4.0, 6.9, 3.7, 9.2]
[7.0, 8.5, 2.4, 2.1]
[1.2, 9.0, 9.9, 7.2]
>>>
>>>
>>>for x in range(3):
... psutil.cpu_times_percent(interval=1, percpu=False)
...
scputimes(user=1.5, nice=0.0, system=0.5, idle=96.5, iowait=1.5, irq=0.0, softirq=0.0, steal=0.0, guest=0.0, guest_nice=0.0)
scputimes(user=1.0, nice=0.0, system=0.0, idle=99.0, iowait=0.0, irq=0.0, softirq=0.0, steal=0.0, guest=0.0, guest_nice=0.0)
scputimes(user=2.0, nice=0.0, system=0.0, idle=98.0, iowait=0.0, irq=0.0, softirq=0.0, steal=0.0, guest=0.0, guest_nice=0.0)
>>>
>>>psutil.cpu_count()
4
>>>psutil.cpu_count(logical=False)
2
>>>
欢迎分享,转载请注明来源:夏雨云
评论列表(0条)