01 2020 档案
摘要:三种阻塞队列 BlockingQueue<Runnable> workQueue = null; workQueue = new ArrayBlockingQueue<>(5);//基于数组的先进先出队列,有界 workQueue = new LinkedBlockingQueue<>();//基于
阅读全文
摘要:1、如果在130的机器上登录131的机器就需要进行登录,为了解决这种问题,就需要用到SHH免密登录 2、在130机器输入ssh-keygen生成密钥,密码默认为空 ssh-keygen 3、讲130生成的密钥复制到131机器 ssh-copy-id root@192.168.31.131 4、然后输
阅读全文