上一页 1 ··· 70 71 72 73 74 75 76 77 78 ··· 108 下一页
摘要: stream { upstream server1{ hash $remote_addr consistent; server 127.0.72.60:3000; } server { listen 8400; proxy_connect_timeout 50s; proxy_timeout 50s 阅读全文
posted @ 2021-10-25 15:45 China Soft 阅读(1173) 评论(0) 推荐(0) 编辑
摘要: 今天从公网的服务器连接本地内网的FTP server copy文件时,系统老是提示227 Entering Passive Mode (xxx,xxx,,xxx,xxx,x),很是奇怪,于是上网找资料仔细研究了一下,原来FTP有两种工作模式,PORT模式和PASV模式. 在主动模式下,FTP客户端随 阅读全文
posted @ 2021-10-25 15:42 China Soft 阅读(4041) 评论(0) 推荐(0) 编辑
摘要: windows nginx TCP代理 负载均衡 必须是 nginx-1.9.0 以上版本(包括1.9.0)。该版本之后,增加了 stream module,可以实现该功能。 下载地址:http://nginx.org/download/nginx-1.9.9.zip http://nginx.or 阅读全文
posted @ 2021-10-25 09:34 China Soft 阅读(359) 评论(0) 推荐(0) 编辑
摘要: nginx1.9之后直接使用Stream配置就可以了,当然需要先安装stream模块 1.nginx 增加tcp ./configure --with-stream --with-pcre=../pcre-8.38 ./configure --with-stream --without-http_r 阅读全文
posted @ 2021-10-25 09:29 China Soft 阅读(528) 评论(0) 推荐(0) 编辑
摘要: 在idea的设置中,存在下面几个标签页 Libraies是向idea中添加的jar或者文件夹进入。 module是添加具体的项目依赖,后面的选项为部署时是否忽略。 artifacts配置打包方式,需要是fix一下 必要时可添加到globe libraies中 阅读全文
posted @ 2021-10-22 17:29 China Soft 阅读(483) 评论(0) 推荐(0) 编辑
摘要: window下maven的环境搭建 一、下载 官网下载地址 二、maven的安装配置 1.环境变量的配置 1)新建环境变量MAVEN_HOME,值如下: D:\install\develop\apache-maven-3.5.3 2)修改环境变量path 在末尾添加: ;%MAVEN_HOME%\b 阅读全文
posted @ 2021-10-22 14:44 China Soft 阅读(119) 评论(0) 推荐(0) 编辑
摘要: maven项目打包配置对于maven管理的的项目,如果想要通过maven命令来生成一个可执行的jar包,pom.xml中需要有如下配置: <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactI 阅读全文
posted @ 2021-10-22 14:38 China Soft 阅读(433) 评论(0) 推荐(0) 编辑
摘要: http://request.uml.com.cn/ 阅读全文
posted @ 2021-10-20 13:39 China Soft 阅读(36) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/RookiexiaoMu_a/article/details/120610006 阅读全文
posted @ 2021-10-19 17:19 China Soft 阅读(601) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/a6a0b5d07508 1)原因分析 因为 Docker 引擎默认通过 https 协议与 Docker Registry 通信,所以如果搭建的Docker 私有镜像库是 http 协议的话,就会输出上述日志。 (2)解决 在虚拟机中,修改 /u 阅读全文
posted @ 2021-10-19 14:56 China Soft 阅读(559) 评论(0) 推荐(0) 编辑
上一页 1 ··· 70 71 72 73 74 75 76 77 78 ··· 108 下一页