摘要: git官方源比较慢,这个是国内的镜像,可以下载git https://npm.taobao.org/mirrors/git-for-windows/ 阅读全文
posted @ 2021-08-29 15:25 iullor 阅读(777) 评论(0) 推荐(0) 编辑
摘要: 1,Idea Live Templates配置详解及演示 https://blog.csdn.net/qq_33306246/article/details/106600939 https://blog.csdn.net/qq_33306246/article/details/106600939 2 阅读全文
posted @ 2021-08-18 09:16 iullor 阅读(77) 评论(0) 推荐(0) 编辑
摘要: 永久修改本地npm的配置: npm config set registry https://registry.npm.taobao.org 重置为官方源 npm config set registry https://registry.npmjs.org/ 阅读全文
posted @ 2021-08-07 11:49 iullor 阅读(110) 评论(0) 推荐(0) 编辑
摘要: #官方提供的建议规则 https://start.spring.io/actuator/info { "git": { "branch": "d307081a71bbf81f83ce723f9f92b22aef719fc2", "commit": { "id": "d307081", "time": 阅读全文
posted @ 2021-08-06 10:26 iullor 阅读(185) 评论(0) 推荐(1) 编辑
摘要: 原因是因为docker在build的时候默认会将Dockerfile同级的所有文件发送给deamon进程 默认不推荐将其他文件和Dockerfile放在同级目录下,例如以下结构 --|log --|xxx.log --|back xxx.jar Dockerfile 解决方式, 1,按照默认方式,将 阅读全文
posted @ 2021-07-05 09:58 iullor 阅读(626) 评论(0) 推荐(0) 编辑
摘要: location 后面地址的说明 location /api/esbapi nginx 会对前端访问的地址进行截取,例如前端访问地址是 http://localhost:4800/api/esbapi/manager/cm0004 那么截取后 剩余的地址为 /manager/cm0004 ,然后再加 阅读全文
posted @ 2021-07-02 11:44 iullor 阅读(3167) 评论(0) 推荐(0) 编辑
摘要: ###项目中一般都是前后端分离 前端定义的统一规则,如开发中页面上的访问地址统一一 如前端访问 http://localhost:8888/api/esbapi/manager/cm0004 而后台接口 http://127.0.0.1:56668/manager/cm0004 比对一下 前端访问的 阅读全文
posted @ 2021-07-02 09:39 iullor 阅读(2872) 评论(0) 推荐(0) 编辑
摘要: 1,基本命令 uname -m 显示机器的处理器架构 uname -r 显示正在使用的内核版本 dmidecode -q 显示硬件系统部件 (SMBIOS / DMI) hdparm -i /dev/hda 罗列一个磁盘的架构特性 hdparm -tT /dev/sda 在磁盘上执行测试性读取操作系 阅读全文
posted @ 2021-06-25 19:24 iullor 阅读(48) 评论(0) 推荐(0) 编辑
摘要: Linux服务器正常使用arthas 下载arthas-packaging-3.1.7-bin.zip 并将arthas的安装包放置到服务器上,然后解压zip包 #解压安装包 unzip arthas-packaging-3.1.7-bin.zip #安装arthas sh ./install-lo 阅读全文
posted @ 2021-06-09 09:16 iullor 阅读(1305) 评论(0) 推荐(1) 编辑
摘要: ###查看linux服务器信息 #查看系统版本信息 cat /proc/version #版本信息配置文件 cat /etc/os-release #查看内容信息 lsmem cat /proc/meminfo #查看cpu信息 lscpu cat /proc/cpuinfo # 查看mysql 的 阅读全文
posted @ 2021-06-05 19:01 iullor 阅读(42) 评论(0) 推荐(0) 编辑