摘要:
Failed to instantiate [org.redisson.api.RedissonClient]: Factory method 'redissonClient' threw exception; nested exception is java.lang.ExceptionInIni 阅读全文
摘要:
netstat -aon|findstr "8080" 查看端口 TCP 0.0.0.0:8080 0.0.0.0:0 LISTENING 11468 TCP 172.27.232.8:53175 200.13.89.3:8080 TIME_WAIT 0 TCP 172.27.232.8:53237 阅读全文
摘要:
递归查: @Override public List<PromotionOrgInfoPO> queryOrgInfo() { List<PromotionOrgInfoPO> promotionOrgInfoPOS = pointExchangeDAO.queryOrgInfo(); List<P 阅读全文
摘要:
最新的1000条 tail -n 1000 catalina.out # 直接定位到第100行 less +100g xx.log # 定位到最后一行 less +GG xx.log # 定位到第100个字节的位置 less +100P xx.log # 直接定位到50%的位置 less +100p 阅读全文
摘要:
命令模式: :w 将编辑的数据写入硬盘档案中(常用) :w! 若文件属性为『只读』时,强制写入该档案。不过,到底能不能写入, 还是跟你对该档案的档案权限有关啊! :q 离开 vi (常用) :q! 若曾修改过档案,又不想储存,使用 ! 为强制离开不储存档案。 :wq 储存后离开,若为 :wq! 则为 阅读全文
摘要:
docker pull mongo docker run --name mongodb -p 27017:27017 -v /mydata/mongodb/data:/data/db -d mongo --auth# --name :指定容器名# -p :指定容器暴露端口,宿主机端口:容器内端口# 阅读全文
摘要:
//参数初始化private static final int CPU_COUNT = Runtime.getRuntime().availableProcessors();//核心线程数量大小private static final int corePoolSize = Math.max(2, M 阅读全文
摘要:
1.查看当前的内核版本 [root@template ~]# uname -r 3.10.0-1160.25.1.el7.x86_64 2.更新yum: yum -y update 可不更 yum -y update:升级所有包同时也升级软件和系统内核; yum -y upgrade:只升级所有包 阅读全文
摘要:
查询容器id: docker ps 查询完整容器id docker inspect -f '{{.ID}}'短容器id cp docker cp 本地路径 完整容器ID:容器路径例: docker cp /opt/mysql-connector-java-5.1.47.jar 793464e3823 阅读全文
摘要:
Thu Oct 22 17:16:01 CST 2020 [3be84a1c-14] There was an unexpected error (type=Internal Server Error, status=500). No qualifying bean of type 'org.spr 阅读全文