上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 35 下一页
摘要: Windows版本因为文件访问句柄数被限制为1024了,当访问量大时就会无法响应 error_log maximum number of descriptors supported by select() is 1024 使用专门的windows版本的nginx,已修改了文件句柄数据的限制。 ngi 阅读全文
posted @ 2020-06-08 17:22 kylingx 阅读(1312) 评论(0) 推荐(0) 编辑
摘要: show global status like 'Max_used_connections'; #已经使用的连接数 show variables like 'max_connections'; #mysql的最大连接数 set global max_connections=500; #修改最大连接数 阅读全文
posted @ 2020-06-08 13:13 kylingx 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 1.基本概念 https://www.cnblogs.com/boboooo/p/13038950.html 2.环境部署-集群 https://www.cnblogs.com/boboooo/p/13050116.html 单机部署 rocketmq部署 1.安装java环境 1.8 2.安装na 阅读全文
posted @ 2020-06-05 16:44 kylingx 阅读(104) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/xiaoliangup/p/9175932.html https://mp.weixin.qq.com/s/wzEbWNN8BBLdP3mFW9ieNw 阅读全文
posted @ 2020-06-05 14:15 kylingx 阅读(1013) 评论(0) 推荐(0) 编辑
摘要: 1.解压war包 jar –xvf test.war 说明:直接解压到当前文件夹,如果需要解压到指定的文件夹下,需要将test.war放到指定文件夹再解压 2.压缩war包 把当前目录下的所有文件打包为testv1.war jar –cvfM0 testv1.war ./ -c 创建war包 -v 阅读全文
posted @ 2020-06-05 09:58 kylingx 阅读(4163) 评论(0) 推荐(0) 编辑
摘要: 编辑网站地址绑定,IP地址设置为全部未分配 ![](https://img2020.cnblogs.com/blog/1423297/202006/1423297-20200603080339224-1842689715.png) 阅读全文
posted @ 2020-06-03 08:04 kylingx 阅读(1828) 评论(0) 推荐(0) 编辑
摘要: 参考链接 https://docs.microsoft.com/zh-cn/windows/security/threat-protection/intelligence/safety-scanner-download 安全扫描程序仅在手动触发时进行扫描,可在下载 10 天后使用。 建议在每次扫描前 阅读全文
posted @ 2020-06-01 19:49 kylingx 阅读(276) 评论(0) 推荐(0) 编辑
摘要: 批量注释ctrl+/ 阅读全文
posted @ 2020-05-31 09:16 kylingx 阅读(138) 评论(0) 推荐(0) 编辑
摘要: go run hello.go go build编译 go install = go build 然后移动至bin目录 #跨平台编译 liux下 CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build hello.go win下 SET CGO_ENABLE 阅读全文
posted @ 2020-05-31 08:50 kylingx 阅读(353) 评论(0) 推荐(0) 编辑
摘要: 下载go开发包 https://golang.google.cn/dl/ 设置环境变量 https://www.goproxy.io/zh/docs/getting-started.html cmd go env -w GO111MODULE=on go env -w GOPROXY=https:/ 阅读全文
posted @ 2020-05-31 08:48 kylingx 阅读(496) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 35 下一页