摘要:
查看历史索引:curl '192.168.1.4:9200/_cat/indices?v 清除历史索引:curl -XDELETE 10.44.2.188:9200/_all 阅读全文
摘要:
https://blog.csdn.net/qq_45186545/article/details/103853601 (好文章就要粘贴复制) 阅读全文
摘要:
https://blog.csdn.net/qq_19731521/article/details/117440169 阅读全文
摘要:
root 用户执行 cat /etc/passwd | cut -f 1 -d : |xargs -I {} crontab -l -u {} (查看所有用户的计划任务)crontab -l -u username (查看指定用户的计划任务) 阅读全文
摘要:
https://www.cnblogs.com/mouseleo/p/14933022.html https://www.cnblogs.com/ssgeek/p/9392104.html 迁移过后原环境的gitlab-secrets.json 文件需要拷到新环境 (https证书注意改名) 阅读全文
摘要:
https://blog.csdn.net/A___LEi/article/details/110476531 阅读全文
摘要:
https://help.fanruan.com/finebi/doc-view-260.html https://help.fanruan.com/finebi/doc-view-262.html 安装包自行在官网下载,安装过后访问不了可能是防火墙没关。也可能是37799端口没做映射。 阅读全文
摘要:
db.a_message_bak.drop() 附上链接一条仅供参考:https://www.cnblogs.com/chujunqiao/p/11680044.html 阅读全文
摘要:
1 docker system prune -a (清理无用的层级) 2 find / -type f -size +100M -print0 | xargs -0 du -h | sort -nr (查找大于100MB的文件) 阅读全文
摘要:
分两种情况: 1 nginx.conf 中的http 下添加一条 server_tokens off; 并重启服务。 2 还有一种情况,是docker部署中的代理Dockerfile 中定义,直接删掉,重启服务即可。 阅读全文