会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
IWS
Talk is cheap. Show me the code. -- Torvalds, Linus (2000-08-25).
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
···
24
下一页
2021年10月9日
由let's encrypt导致的certificate has expired,以及为了解决这个问题,导致docker无法启动的问题
摘要: 过完国庆,发现部署的任务系统,无法访问自己的其它系统接口了,报的错是 certificate has expired,可是这个证书还有2个月才过期呀。一查下来才知道,原来是Let's Encrypt把DST Root CA X3改成了ISRG Root X1,导致低于openssl 1.1版本的,都
阅读全文
posted @ 2021-10-09 13:26 GreatK
阅读(811)
评论(0)
推荐(0)
2021年8月24日
Mac: 使用SDK切换gradle版本
摘要: 一句话:sdk use gradle 5.3
阅读全文
posted @ 2021-08-24 13:42 GreatK
阅读(223)
评论(0)
推荐(0)
2021年7月2日
用老毛桃安装centos7
摘要: 可以参考这篇文章: https://www.cnblogs.com/sun51586/p/10497538.html 需要注意的是,如果你的老毛桃U盘用的是NTFS,那么需要将iso镜像文件先copy到一个fat32的盘上,否则安装过程中,会报不识别ntfs格式的错误。
阅读全文
posted @ 2021-07-02 18:24 GreatK
阅读(2366)
评论(0)
推荐(0)
2021年6月8日
RocketMQ安装若干问题
摘要: 1. Cannot allocate memory RocketMQ默认安装需要使用8G的内存,所以如果内存不够会导致启动失败,这时需要修改配置文件bin/runbroker.sh,修改xms、xmx和xmn。参考https://www.cnblogs.com/freeweb/p/7817968.h
阅读全文
posted @ 2021-06-08 14:57 GreatK
阅读(618)
评论(0)
推荐(0)
2021年2月22日
Docker: WARNING: IPv4 forwarding is disabled. Networking will not work.
摘要: 当遇到这个问题的时候,可以通过如下操作解决: 1. vi /etc/sysctl.conf 2. 添加 net.ipv4.ip_forward=1 3. 保存后重启服务 systemctl restart network 4. 检查修改是否成功 sysctl net.ipv4.ip_forward,
阅读全文
posted @ 2021-02-22 16:21 GreatK
阅读(142)
评论(0)
推荐(0)
2021年2月20日
Linux: 找出尺寸最大的n个文件/目录命令
摘要: du -hs * | sort -rh | head -5
阅读全文
posted @ 2021-02-20 13:17 GreatK
阅读(145)
评论(0)
推荐(0)
2021年1月8日
npm私服verdaccio报sha错误的解决方案
摘要: 搭建verdaccio后,在执行npm install时,一直报sha的错误,解决方案如下: 1. 删除verdaccio的storge 2. 修改 /root/.config/verdaccio/config.yaml,将其中的 1) npmjs的指向改为taobao镜像https://regis
阅读全文
posted @ 2021-01-08 12:04 GreatK
阅读(634)
评论(0)
推荐(0)
2020年10月10日
解决Parsing error: Invalid ecmaVersion问题
摘要: 遇到这个问题时,需要检查项目中的.eslintrc.js文件中,ecmaVersion的数值是否与环境一致。历代版本如下: ecmaVersion - 默认设置为 3,5(默认), 你可以使用 6、7、8、9 或 10 来指定你想要使用的 ECMAScript 版本。你也可以用使用年份命名的版本号指
阅读全文
posted @ 2020-10-10 13:22 GreatK
阅读(6558)
评论(0)
推荐(0)
2020年9月7日
Rust: Couldn't resolve host name (Could not resolve host: crates
摘要: 使用 nightly 版本时,Crates 源可能会出现 Couldn't resolve host name (Could not resolve host: crates) 错误(见 https://github.com/ustclug/discussions/issues/294)。 一个临时
阅读全文
posted @ 2020-09-07 11:35 GreatK
阅读(2069)
评论(0)
推荐(0)
2020年8月7日
poi: 如何获取cell的行号对应的字母
摘要: 感谢https://blog.jbaysolutions.com/2012/06/08/apache-poi-translating-excel-column-number-to-letter-5/ 一句话: String columnLetter = CellReference.convertNu
阅读全文
posted @ 2020-08-07 17:42 GreatK
阅读(1011)
评论(0)
推荐(1)
上一页
1
2
3
4
5
6
7
···
24
下一页
公告