Elasticsearch api 操作 常用选项 返回漂亮的展示 ?pretty=true 返回人性化的结果 ?human cat apis 查看节点版本信息 curl -s -XGET -u elastic:elastic http://127.0.0.1:9200 查看集群健康状态 curl -u elastic:elastic http://127.0.0.1:9200/_cat/health?v 查看nodes状态 curl -u elastic:elastic http://127.0.0.1:9200/_cat/nodes?pretty 查看所有索引 curl -s -XGET -u elastic:elastic http://127.0.0.1:9200/_cat/indices # 添加过滤条件 curl -u elastic:elastic http://127.0.0.1:9200/_cat/indices/tbex*-2020.09.25?v 查看全部索引分片信息 curl……
阅读全文
git submodule操作 添加子模块 git submodule add git-url 删除子模块 删除子模块目录及源码 删除项目目录下.gitmodules文件中子模块相关条目 删除配置项中子模块相关条(.git/config) 删除模块下的子模块目录……
阅读全文
Git远程仓库地址变更本地如何修改 方法一: 通过命令直接修改 git remote set-url origin ssh_url(ssh_url换成新的git地址) 方法二: 通过命令先删除再添加远程仓库 git remote rm origin git remote add origin ssh_url 方法三: 修改配置文件 修改 [remote “o……
阅读全文
Git 仓库迁移 说明: 这种方式可以保留原版本库中的所有内容,包括 log 信息 步骤 从原地址克隆一份裸版本库 $ git clone --bare git://github.com/username/project.git –bare:创建的克隆版本库都不包含工作区,直接就是版本库的内容,这样的版本库称为裸版……
阅读全文
修改最后一次提交 commit 的信息 修改最近提交的 commit 信息 git commit --amend --message="NEW MESSAGE" --author="test <test@163.com>" 仅修改 message 信息 git commit --amend --message="NEW MESSAGE" 仅修改 author 信息 git commit --amend --author="test <test@163.com>"……
阅读全文
git 技巧 设置文本编辑器 git config --global core.editor emacs 配置用户信息 git config --global user.name "Your Name" git config --global user.email "email@example.com" 版本回退 回退上一个版本 git reset --hard HEAD^ 回退到指定版本 git reset --hard 0fa7197c3170f7dbf8c872592a873ab50a4ce094 回退完后,要强制提交,强制提交比较旧的代码 git push origin HEAD:master --force #or git push origin 0fa7197c3170f7dbf8c872592a873ab50a4ce094:master --force git reset 之后的后悔药 git reset……
阅读全文
配置代理 打开配置文件 vim ~/.gitconfig 添加如下配置 [http "https://github.com/"] proxy = http://127.0.0.1:1081 [https "https://github.com/"] proxy = http://127.0.0.1:1081 [http "https://my.comapnyserver.com/"] proxy = ""……
阅读全文
git 修改分支名称 本地分支重命名(还没有推送到远程) git branch -m oldName newName 远程分支重命名 (已经推送远程-假设本地分支和远程对应分支名称相同) 重命名远程分支对应的本地分支 git branch -m oldName newName 删除远程分支 git push --delete origin oldName 上传新命名的本地……
阅读全文
docker-compose 修改容器时区 方法1 environment: TZ: Asia/Shanghai 或者 environment: - TZ: Asia/Shanghai 方法2 environment: - SET_CONTAINER_TIMEZONE=true - CONTAINER_TIMEZONE=Asia/Shanghai #或者这样写 environment: SET_CONTAINER_TIMEZONE: true CONTAINER_TIMEZONE: Asia/Shanghai……
阅读全文
说明 当使用 df 命令查看磁盘空间时被 hang 住,不显示结果 查找问题 通过strace命令查看系统调用 execve("/usr/bin/df", ["df"], 0x7ffcdb37ef80 /* 25 vars */) = 0 brk(NULL) = 0xcb9000 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fbfdc740000 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (没有那个文件或目录) open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3 fstat(3, {st_mode=S_IFREG|0644, st_size=60184, ...}) = 0 mmap(NULL, 60184, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fbfdc731000 close(3) =……
阅读全文