上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 24 下一页
摘要: Mysql binlog 相关 MySQL 修改密码 sudo -s mysql use mysql ALTER USER root@localhost IDENTIFIED WITH caching_sha2_password BY '123456' MySQL 允许 root 远程登录 mysq 阅读全文
posted @ 2021-12-16 16:26 LiuChengloong 阅读(795) 评论(0) 推荐(0) 编辑
摘要: Linux关机,重启 # 关机 shutdown -h now # 重启 shutdown -r now 建立软连接 ln -s /usr/local/jdk1.8/ jdk sshkey # 创建sshkey ssh-keygen -t rsa -C your_email@example.com 阅读全文
posted @ 2021-12-15 10:22 LiuChengloong 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 对项目进行性能分析,往往需要查看 CPU 耗时,了解瓶颈在哪里。火焰图(flame graph)是性能分析的利器。 我这里使用的是 async-profiler 这个开源项目,项目地址为: https://github.com/jvm-profiling-tools/async-profiler.g 阅读全文
posted @ 2021-12-08 14:22 LiuChengloong 阅读(316) 评论(0) 推荐(0) 编辑
摘要: 延迟任务设计思路 入队操作:ZADD KEY timestamp task, 我们将需要处理的任务 按其需要延迟处理时间作为 Score 加入到 ZSet 中。Redis 的 ZAdd 的时间复杂度是 O(logN),N是 ZSet 中元素个数,因此我们能相对比较高效的进行入队操作。 起一个进程定时 阅读全文
posted @ 2021-12-07 15:30 LiuChengloong 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 要设计一个高性能的系统,那么缓存肯定是一个绕不开的话题,合理使用缓存可以使得系统变得更“快”,响应时间也能大大减少。 那么如何设计一个缓存呢,这里将我系统现有的一个缓存功能记录下来,方便以后使用。这是一个简单的 K-V 的本地缓存,使用 Caffeine 作为具体的本地缓存框架,并且可以方便的更换底 阅读全文
posted @ 2021-12-07 14:30 LiuChengloong 阅读(75) 评论(0) 推荐(0) 编辑
摘要: ### 备份源 sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak ### 新增源 sudo vim /etc/apt/sources.list ### 20.04 阿里云: deb http://mirrors.aliyun.com/ub 阅读全文
posted @ 2021-12-03 08:47 LiuChengloong 阅读(394) 评论(0) 推荐(0) 编辑
摘要: es 因为安全问题拒绝使用 root 用户启动 # groupadd es # useradd es -g es -p 密码 # -g 指定组 -p 指定密码 # chown -R es:es elasticsearch/ # -R : 处理指定目录下的所有文件 # su es # cd elast 阅读全文
posted @ 2021-11-17 13:17 LiuChengloong 阅读(395) 评论(0) 推荐(0) 编辑
摘要: 安装编译环境 使 nginx 支持 http rewrite 模块/ssl 模块/ zlib # yum -y install gcc gcc-c++ pcre pcre-devel openssl openssl-devel zlib zlib-devel gd gd-devel 创建用户 ngi 阅读全文
posted @ 2021-11-15 16:30 LiuChengloong 阅读(41) 评论(0) 推荐(0) 编辑
摘要: Piping 是一个轻量级的开源文件传输工具,可自托管,支持使用 curl、wget 下载,可更广泛的在无浏览器的设备上使用。 可以用于不同设备间传输文本或者文件,或者在不同用户间传递资料等场景。 Github 地址:https://github.com/nwtgck/piping-server c 阅读全文
posted @ 2021-11-12 13:17 LiuChengloong 阅读(382) 评论(0) 推荐(0) 编辑
摘要: 正常maven依赖jar包的pom.xml写法如下: <!-- (参数一):下载到本地的pingpp-java-2.2.1.jar包的真实存放路径 --> <dependency> <groupId>Pingplusplus</groupId> (参数二) <artifactId>pingpp-ja 阅读全文
posted @ 2021-10-09 13:41 LiuChengloong 阅读(161) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 24 下一页