摘要:
import paramiko import os 创建SSH对象 ssh = paramiko.SSHClient() 允许连接不在know_hosts文件中的主机 ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) 连接服务器 ss 阅读全文
摘要:
`update xxxx_tab set if_internet = 2 and netposition = 1 where job= 'xxxxx' and name= 'xxxx';` 2 and netposition = 1 , and 是与运算,先判断netposition = 1 在数据 阅读全文
摘要:
Runnable runnable = new Runnable() { //定义一个Runnable对象 @Override public void run() { System.out.println("【Runnable】 i love you"); } }; Thread thread = 阅读全文
摘要:
--Mysql--导出函数、存储过程 mysqldump -u root -paawwqqaa -ntd -R shujuku > prorandfunc.sql --Mysql--导出表结构、数据 mysqldump -u root -paawwqqaa shujuku > data.sql my 阅读全文
摘要:
select ip_type 'IP类型', timestamp '数据填报时间' from ( select d.id, if(d.ip_type = 0, 'IP', 'IP段') ip_type , d.timestamp, (CASE d.visible WHEN 0 THEN '否' WH 阅读全文
摘要:
在文件夹中搜索特定文件 find . -name "xxxxx" -print 查询指定内容 输出到指定文件 grep "xxxx" xxxx.log > xx.txt 阅读全文
摘要:
ps aux | grep elasticsearch 修改 elasticsearch.yml 点击查看代码 xpack.security.enabled: true xpack.security.transport.ssl.enabled: true xpack.license.self_gen 阅读全文
摘要:
点击查看代码 server { limit_conn perip 20; limit_conn perserver 200; limit_rate 1024M; listen 61061; server_name 10.10.10.10; #root /home/issa/fanzha/html-y 阅读全文
摘要:
属性注入 autowire 1.xml autowire="byName" 点击查看代码 public class User { @Value(value = "abc") private String name; public void add(){ System.out.println("add 阅读全文
摘要:
点击查看代码 Demo user = new Demo(1); change(user); System.out.println("user "+user.getAge()); public static void change(Demo demo){ Demo sd = new Demo(5); 阅读全文