[Git] git add -A 和 git add . 及 git add -u的区别 2021-09-25 git 326 words 1 min read git add -A 和 git add . 及 git add -u的区别 git add . git add .会监控工作区的状态树,使用它会把工作时的所有变化提交到暂存区, 包括文件内容修改(modified) Read more...
[MySQL] Mobike 高可用MySQL集群方案使用实践 2021-09-19 mysql 794 words 2 mins read MoHA 是 Mobike 开源的跨数据中心的 MySQL 集群的高可用(HA)解决方案 MoHA 提供了详细的设计和使用说明文档,点击查看 启动使用 下载项目 1 git clone https://gitee.com/piao/moha.git $GOPATH/src/github.com/moiot/moha 可选择修改配置中的 Read more...
[Linux] shell exec 命令 2021-08-30 linux 2149 words 5 mins read Linux shell exec command shell中exec命令 语法格式 exec [-cl] [-a name] [command [arguments]] 选项说明 -c #在空环境中执行指定的命令 -l #在传递给command的第零个arg的开头放置一 Read more...
[MySQL] Docker Official Image packaging for MySQL Community Server 2021-08-30 mysql docker 1216 words 3 mins read Docker Official Image packaging for MySQL Community Server mysql5.7 Dockerfile.debian 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 Read more...
[MySQL] show slave status 介绍 2021-08-29 mysql 4848 words 10 mins read MySQL show slave status 介绍 执行show slave status返回结果 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 Read more...