09 2019 档案
ssh scp 上传下载文件
摘要:scp username@servername:/path/filename 例如scp codinglog@192.168.0.101:/home/kimi/test.txt 把192.168.0.101上的/home/kimi/test.txt 的文件下载到当前目录 2、上传本地文件到服务器 s 阅读全文
posted @ 2019-09-26 19:29 adolfmc 阅读(1350) 评论(0) 推荐(0)
git 常用命令
摘要:git强制覆盖: git fetch --all git reset --hard origin/master git pullgit强制覆盖本地命令(单条执行): git fetch --all && git reset --hard origin/master && git pull 阅读全文
posted @ 2019-09-26 19:27 adolfmc 阅读(164) 评论(0) 推荐(0)
docker 镜像制作
摘要:# wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-5.3.1-Linux-x86_64.sh# bash Anaconda3-5.3.1-Linux-x86_64.sh # source ~/.bashrc# 阅读全文
posted @ 2019-09-23 15:43 adolfmc 阅读(383) 评论(0) 推荐(0)
MySQL 对于千万级的大表要怎么优化?
摘要:作者:互联网编程链接:https://www.zhihu.com/question/19719997/answer/549041957来源:知乎著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。 问题概述 使用阿里云rds for MySQL数据库(就是MySQL5.6版本),有个 阅读全文
posted @ 2019-09-10 14:21 adolfmc 阅读(5182) 评论(1) 推荐(0)