随笔 - 835  文章 - 1 评论 - 40 阅读 - 102万
< 2025年2月 >
26 27 28 29 30 31 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 1
2 3 4 5 6 7 8

09 2019 档案
ubuntu系统下载
摘要:cakao : https://blog.csdn.net/kwame211/article/details/83902851 U盘制作 Ventoy : https://www.ventoy.net/cn/download.html 官方下载地址(不推荐) https://www.ubuntu.c 阅读全文
posted @ 2019-09-27 17:23 lshan 阅读(2258) 评论(0) 推荐(1) 编辑
idea2022 社区版IDEA也能像正式版IDEA一样使用
摘要:今天测试jdk17 , 发现idea2020版本无法使用jdd17的新特性,还报错 安装部分插件,几乎没有区别 社区版IDEA也能像正式版IDEA一样使用 一、Smart Tomcat插件 二、Database Navigator插件 三、JSpring Assistant或者Spring Init 阅读全文
posted @ 2019-09-27 16:56 lshan 阅读(5186) 评论(0) 推荐(0) 编辑
ngnix的使用反向代理-负载均衡,限流(2)
摘要:原文参考:https://blog.csdn.net/zy1471162851/article/details/91795712 Nginx业务服务器状态 down:表示当前server暂时不参与负载 weight:默认为1,weight越大,负载的权重就越大 max_fails:允许请求失败的次数 阅读全文
posted @ 2019-09-27 10:18 lshan 阅读(412) 评论(0) 推荐(0) 编辑
ngnix 使用--正反向代理(1) 前后台分离部署
摘要:常用1: sudo docker run -itd --restart=always -p 8888:80 --name zhipin_admin_web -m 400m --memory-reservation 300m -v /opt/docker/sftp/upload/dep_web/:/u 阅读全文
posted @ 2019-09-26 20:00 lshan 阅读(225) 评论(0) 推荐(0) 编辑
python 的安装
摘要:win10 参考:https://www.cnblogs.com/wqaz-0-1-2-3/p/14076782.html 原文参考:https://pinyin.sogou.comeqwewfdsfes/linux/help.pRWERWERhp 版权声明:本文为博主原创文章,遵循 CC 4.0 阅读全文
posted @ 2019-09-26 16:48 lshan 阅读(222) 评论(0) 推荐(0) 编辑
ubuntu两个python版本共存并切换默认版本
摘要:参考:https://blog.csdn.net/xunan003/article/details/81710996 ubuntu18.04 : sudo apt-get install python3-pip sudo apt-get install python3 此方法适用于ubuntu和de 阅读全文
posted @ 2019-09-26 14:02 lshan 阅读(3371) 评论(0) 推荐(0) 编辑
kong的使用
摘要:参考:https://www.jianshu.com/p/a68e45bcadb6 阅读全文
posted @ 2019-09-20 10:22 lshan 阅读(225) 评论(0) 推荐(0) 编辑
kafka 高级应用 springboot2.1 (2) 手动创建topic
摘要:依赖: application.properties: KafkaConfig: 如果topic需要初始化:可以配置//cankao :https://blog.csdn.net/tmeng521/article/details/90901925 test 手动创建topic ,手动查看所有topi 阅读全文
posted @ 2019-09-18 17:53 lshan 阅读(8357) 评论(0) 推荐(0) 编辑
mongo DB分页
摘要:参考:https://blog.csdn.net/qq_40715775/article/details/83153808 依赖: domain: config:(application.propeties) repository: web: 阅读全文
posted @ 2019-09-17 12:53 lshan 阅读(203) 评论(0) 推荐(0) 编辑
springboot2 redis 做默认缓存(2)
该文被密码保护。
posted @ 2019-09-17 09:37 lshan 阅读(279) 评论(0) 推荐(0) 编辑
ngnix install 及配置详解
摘要:docker : 官网:https://hub.docker.com/_/nginx step 1: sudo docker pull nginx step2 : sudo mkdir -p /data/ngnixvi ngnix.conf ngnix.conf : user nginx; work 阅读全文
posted @ 2019-09-16 12:14 lshan 阅读(205) 评论(0) 推荐(0) 编辑
集群情况下Session共享解决方案 redis
摘要:1、集群情况下session会产生什么原因? 由于session存放在服务器端,集群下用户可能访问不同的服务器,则可能session无法共享。 2、Session共享解决方案 1)NGINX做的负载均衡可以绑定ip_hash,从而使同一个IP访问同一个服务器 该方案使得集群失去意义。 2)利用数据库 阅读全文
posted @ 2019-09-16 11:59 lshan 阅读(1196) 评论(0) 推荐(0) 编辑
ubuntu rabiit SVN
摘要:https://blog.csdn.net/u012472945/article/details/79595566 cankao : Ubuntu 16.04 安装 SVN-Client (RaabitVCS) 阅读目录 1. 添加源 2. 更新源 3. 安装依赖库 4.安装rabbitCVS 5. 阅读全文
posted @ 2019-09-10 15:07 lshan 阅读(261) 评论(0) 推荐(0) 编辑
运行mongo DB 官方镜像,以及基本操作,认证
摘要:为了支持事务,使用副本集的方式做单机节点: 副本及带认证详细参考我这篇:https://www.cnblogs.com/lshan/p/12035285.html 副本集如果连接不上可以加上参数:mongodb://192.168.186.122:27017/?directConnection=tr 阅读全文
posted @ 2019-09-10 14:40 lshan 阅读(1660) 评论(0) 推荐(0) 编辑
jdk maven 环境变量配置
摘要:jdk 下载:如果官网没有账号: https://www.iworkh.com/download/share/99-%E8%BD%AF%E4%BB%B6/04-%E7%8E%AF%E5%A2%83%E6%90%AD%E5%BB%BA/jdk/ link来自: https://blog.csdn.ne 阅读全文
posted @ 2019-09-09 19:38 lshan 阅读(823) 评论(0) 推荐(0) 编辑
flume 基本知识
摘要:官网指导文档: http://flume.apache.org/releases/content/1.7.0/FlumeDeveloperGuide.html http://flume.apache.org/releases/content/1.9.0/FlumeDeveloperGuide.htm 阅读全文
posted @ 2019-09-03 11:06 lshan 阅读(281) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示