摘要:
1、在pom.xml导入依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-websocket</artifactId> </dependency> 2、在Spring 阅读全文
摘要:
参考:https://blog.csdn.net/lingfeian/article/details/125482271 1、解压上传好的安装包 tar -zxvf ./docker-20.10.9.tgz 2、将解压得到的文件复制到 /usr/bin目录下 cp docker/* /usr/bin 阅读全文
摘要:
1、开放防火墙端口 firewall-cmd --zone=public --add-port=9092/tcp --permanent firewall-cmd --zone=public --add-port=7000-40000/tcp --permanent firewall-cmd --r 阅读全文
摘要:
参考:https://blog.csdn.net/weixin_46732884/article/details/124050982 参考:https://www.fengnayun.com/news/content/293898.html 1、添加PostgreSQL Yum存储库 yum ins 阅读全文
摘要:
参考:https://blog.csdn.net/qq_29768197/article/details/125048720 参考:https://blog.csdn.net/weixin_46739058/article/details/129189927 参考:https://blog.csdn 阅读全文
摘要:
1、下载执行包 wget https://dl.min.io/server/minio/release/linux-amd64/archive/minio.RELEASE.2021-06-17T00-10-46Z 2、创建数据、日志文件夹 mkdir -p /data/project/minio/d 阅读全文
摘要:
1、在https://github.com/alibaba/nacos/releases/tag/2.3.1下载nacos-server-2.3.1.tar.gz 2、解压 tar -zxf nacos-server-2.3.1.tar.gz 3、安装jdk 4、持久化,创建nacos库,执行mys 阅读全文
摘要:
参考:https://blog.csdn.net/weixin_42032770/article/details/116544962 参考:https://blog.csdn.net/a778203081/article/details/129296369 1、string、stringbuilde 阅读全文
摘要:
Collection集合 数组和集合的区别【理解】 相同点 都是容器,可以存储多个数据 不同点 数组的长度是不可变的,集合的长度是可变的 数组可以存基本数据类型和引用数据类型 集合只能存引用数据类型,如果要存基本数据类型,需要存对应的包装类 Collection集合的遍历【应用】 迭代器介绍 迭代器 阅读全文
摘要:
一、influxdb2.0以后 1、influxdb导出 ./influx backup \ /home/backup/backup_$(date '+%Y-%m-%d_%H-%M') \ --host http://xxx.xxx.xxx.xxx:xxxx \ --org orgName --bu 阅读全文