2019年4月1日
摘要: 1 public class StaticSingleton { 2 private StaticSingleton(){ 3 System.out.println("StaticSingleton is created"); 4 } 5 private static class SingletonHolder{ 6 priva... 阅读全文
posted @ 2019-04-01 21:21 十字街~ 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 服务器A需要传输文件至B:即A生成密钥,B保存密钥 1.A服务器生成密钥,一般已有生成密钥,若无,ssh-keygen -t rsa 2.scp .ssh/id_rsa.pub root@192.168.0.2:/root/.ssh/authorized_keys (输入B服务器密码)(服务器一般是 阅读全文
posted @ 2019-04-01 20:48 十字街~ 阅读(7363) 评论(0) 推荐(2) 编辑