摘要: 查看磁盘 :df -h 查看文件夹大小:du -h -x --max-depth=1 查看内存:free -m 查看cpu: top cat /proc/cpuinfo| grep "cpu cores"| uniq 添加指定需要开放的端口:firewall-cmd --add-port=30000 阅读全文
posted @ 2021-03-17 14:59 孤独一梦 阅读(91) 评论(0) 推荐(0) 编辑
摘要: 转载:https://www.cnblogs.com/zk263235046/articles/5601359.html kettle集群的实现是通过Carte来实现的. carte的介绍 http://wiki.pentaho.com/display/EAI/Carte+Configuration 阅读全文
posted @ 2021-03-08 16:06 孤独一梦 阅读(376) 评论(0) 推荐(0) 编辑
摘要: db.createUser({ user: "admin", pwd: "admin@123456", roles: [ { role: "userAdminAnyDatabase", db: "admin" } ], mechanisms : ["SCRAM-SHA-1"] }) 添加权限db.u 阅读全文
posted @ 2021-02-25 10:41 孤独一梦 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 原文地址:https://blog.csdn.net/weixin_42446849/article/details/81669864 一、成员变量 position:在世界空间坐标transform的位置。localPosition:相对于父级的变换的位置。如果该变换没有父级,那么等同于Trans 阅读全文
posted @ 2020-11-26 10:28 孤独一梦 阅读(555) 评论(0) 推荐(0) 编辑
摘要: Nacos 配置: Spring Cloud VersionSpring Cloud Alibaba VersionSpring Boot Version Spring Cloud Hoxton.SR8 2.2.3.RELEASE 2.3.2.RELEASE Spring Cloud Greenwi 阅读全文
posted @ 2020-11-13 09:57 孤独一梦 阅读(265) 评论(0) 推荐(0) 编辑
摘要: 在/etc/rc.local文件中添加自启动命令 执行脚本 在/etc/init.d目录下添加自启动脚本 linux在“/etc/rc.d/init.d”下有很多的文件,每个文件都是可以看到内容的,其实都是一些shell脚本或者可执行二进制文件Linux开机,会加载运行/etc/rc.d/init. 阅读全文
posted @ 2020-11-10 16:23 孤独一梦 阅读(473) 评论(0) 推荐(0) 编辑
摘要: 打成 jar以后在同一级目录下放 配置文件然后用命令 java -jar -D spring.config.location=xxx.yml xxx.jar spring.config.location 就可以 指定 配置文件地址 阅读全文
posted @ 2020-11-06 13:15 孤独一梦 阅读(592) 评论(0) 推荐(0) 编辑
摘要: 效果如: 天空盒是一个全景视图,分为六个纹理,表示沿主轴(上,下,左,右,前,后)可见的六个方向 1、准备好图片; 2、打开unity,在Assets目录下,创建一个SkyBox文件夹; 3、将准备好的图片放置到SkyBox目录下; 4、全选图片,在Inspector栏,设置图片属性,如下图: 注意 阅读全文
posted @ 2020-10-15 10:06 孤独一梦 阅读(1648) 评论(0) 推荐(0) 编辑
摘要: <dependency> <!--引用包--> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper</artifactId> <version>5.1.4</version> <exclusions> <!--剔除存在包-- 阅读全文
posted @ 2020-09-27 17:41 孤独一梦 阅读(794) 评论(0) 推荐(0) 编辑
摘要: 1.配置pom.xml(不能够自动下载jar包) <dependency> <groupId>com.oracle</groupId> <artifactId>ojdbc6</artifactId> <version>6</version> </dependency> 2.手动安装本地仓库命令行执行 阅读全文
posted @ 2020-09-22 09:18 孤独一梦 阅读(134) 评论(0) 推荐(0) 编辑