摘要: 假如你运行时发现 ping 很快就结束了,那就执行下面的命令,再重试一下。 # 禁止接收从DNS服务器发送过来并包含googleusercontent的包$ iptables -I INPUT -p udp --sport 53 -m string --string googleuserconten 阅读全文
posted @ 2021-12-17 17:17 up~up 阅读(146) 评论(0) 推荐(0) 编辑
摘要: tcp参数 # 增大处于 TIME_WAIT 状态的连接数量 net.ipv4.tcp_max_tw_buckets=1048576 # 增大跟踪连接表大小 net.netfilter.nf_conntrack_max=1048576 # 缩短处于 TIME_WAIT 状态的超时时间 net.ipv 阅读全文
posted @ 2021-12-17 15:19 up~up 阅读(54) 评论(0) 推荐(0) 编辑
摘要: ##查看所有表信息 SELECT * FROM information_schema.TABLES WHERE TABLE_SCHEMA = 'schema' ##查看各个表数据量 SELECT table_name,table_rows FROM information_schema.tables 阅读全文
posted @ 2021-12-17 14:50 up~up 阅读(547) 评论(0) 推荐(0) 编辑