• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






会飞の鱼

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理

11 2019 档案

 
mongo创建用户
摘要:db.createUser( {user: "root",pwd: "ksyun.123",roles: [ { role: "readWrite", db: "wekan" } ]}) 阅读全文
posted @ 2019-11-22 13:55 会飞の鱼 阅读(156) 评论(0) 推荐(0)
mongodb备份与恢复
摘要:mongodump -d wekan -o ./ --authenticationDatabase admin mongorestore -h 127.0.0.1 -u root -p ksyun.123 -d wekan ./wekan --authenticationDatabase admin 阅读全文
posted @ 2019-11-22 13:04 会飞の鱼 阅读(193) 评论(0) 推荐(0)
python垃圾回收
摘要:gc.collect方法默认不对重载了__del__方法的循环引用对象进行回收,而它们俩的状态也会从unreachable转变为uncollectable。由于是uncollectable的,自然就不会被collect处理,所以就进入了garbage列表。 阅读全文
posted @ 2019-11-11 09:39 会飞の鱼 阅读(143) 评论(0) 推荐(0)
java分析工具arthas
摘要:wget https://alibaba.github.io/arthas/arthas-boot.jar java -jar arthas-boot.jar --target-ip 0.0.0.0 阅读全文
posted @ 2019-11-08 19:53 会飞の鱼 阅读(332) 评论(0) 推荐(0)
docker日志清理
摘要:https://blog.csdn.net/yjk13703623757/article/details/80283729 # vim /etc/docker/daemon.json { "registry-mirrors": ["http://f613ce8f.m.daocloud.io"], " 阅读全文
posted @ 2019-11-02 00:20 会飞の鱼 阅读(193) 评论(0) 推荐(0)