摘要: class InfoMG(View): @method_decorator(csrf_exempt) @method_decorator(login_required) def dispatch(self, request, *args, **kwargs): return super(InfoMG 阅读全文
posted @ 2021-08-16 19:26 lucky_tomato 阅读(582) 评论(0) 推荐(0) 编辑
摘要: salt-cp '节点名字' 源路径 目标路径 salt-cp 'test1' /root/test.sh /tmp/test.sh 阅读全文
posted @ 2021-08-08 17:49 lucky_tomato 阅读(90) 评论(0) 推荐(0) 编辑
摘要: 查看僵尸进程 ps -A -ostat,ppid,pid,cmd |grep -e '^[Zz]' 杀死僵尸进程 kill -15 ppid 阅读全文
posted @ 2021-08-08 17:42 lucky_tomato 阅读(436) 评论(0) 推荐(0) 编辑
摘要: find ./ -type f -name consumer.xml -exec sed -i "s/aaaa/bbb/g" {} \; 阅读全文
posted @ 2021-08-08 17:26 lucky_tomato 阅读(174) 评论(0) 推荐(0) 编辑
摘要: netstat -an|awk '/^tcp/{++S[$NF]}END{for (a in S)print a,S[a]}' 输出结果: TIME_WAIT 65 ESTABLISHED 99 CLOSING 1 LISTEN 735 阅读全文
posted @ 2021-08-08 17:24 lucky_tomato 阅读(595) 评论(0) 推荐(0) 编辑
摘要: du -x --max-depth=1/ |sort -k1 -nr 阅读全文
posted @ 2021-08-08 17:22 lucky_tomato 阅读(230) 评论(0) 推荐(0) 编辑
摘要: 显示当前目录下前十个使用inodes最多的目录 find -type f | awk -F / -v OFS=/ '{$NF="";dir[$0]++}END{for(i in dir)print dir[i]""i}'|sort -k1 -nr|head 显示/data目录下前十个使用inodes 阅读全文
posted @ 2021-08-08 17:18 lucky_tomato 阅读(789) 评论(0) 推荐(0) 编辑
摘要: ip a|grep "global" | awk '{print $2}' |awk -F / '{print $1}' 阅读全文
posted @ 2021-08-08 17:15 lucky_tomato 阅读(456) 评论(0) 推荐(0) 编辑
摘要: 1.在某张表添加一个字段 alter table 表名(table_name) add 字段(field) 2.在某张表删除一个字段 ALTER TABLE 表名(table_name) drop COLUMN 字段(field); 3.修改某张表字段不为空 alter table 表名(table 阅读全文
posted @ 2021-08-08 10:31 lucky_tomato 阅读(77) 评论(0) 推荐(0) 编辑
摘要: 问题: 解决方法: pip install -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com 包名 阅读全文
posted @ 2021-07-27 15:30 lucky_tomato 阅读(83) 评论(0) 推荐(0) 编辑