rm -rf /opt/registry mkdir -p /opt/registry/auth mkdir -p /opt/registry/data docker run --rm --entrypoint htpasswd registry -Bbn admin 123@abc.com >> ...
分类:
其他好文 时间:
2020-05-26 12:22:05
阅读次数:
104
1、说一些你比较常用linux指令 1.1、ls/ll、cd、mkdir、rm-rf、cp、mv、ps -ef | grep xxx、kill、free-m、tar -xvf file.tar、(说那么十几二十来个估计差不多了) 2、查看进程(例:如何查看所有xx进程) 2.1、ps -ef | g ...
分类:
系统相关 时间:
2020-05-26 11:58:40
阅读次数:
92
第1章 主从复制架构演变 1.1 高性能架构 读写分离架构(读性能较高) 1.代码级别 MySQL proxy (Atlas,mysql router,proxySQL(percona),maxscale)、 amoeba(taobao) xx-dbproxy等。 2.分布式架构(读写性能都提高): ...
分类:
数据库 时间:
2020-05-25 23:41:10
阅读次数:
123
/usr : Unix System Resources /sbin: super user bin /bin是系统的一些指令。bin为binary的简写主要放置一些系统的必备执行档例如:cat、cp、chmod df、dmesg、gzip、kill、ls、mkdir、more、mount、rm、s ...
分类:
系统相关 时间:
2020-05-25 19:50:19
阅读次数:
105
日常运维中,某些服务器几十万的文件需要删除,该如果快速删除? rm find + delete rsync + delete 从测试结果可以看出rsync效率最高 ...
分类:
系统相关 时间:
2020-05-25 19:45:44
阅读次数:
74
容器分为交互式容器和守护进程式容器交互式容器#-it交互式的容器,一般做为工具类的容器,退出即销毁#加--rm参数容器退出时自动删除#此次创建直接进入容器dockerrun-ti--nametestcentos:7守护进程式容器#守护式的容器,必须要对外暴露端口,以实现自身价值#创建后不进入容器,dockerps-a可以看到正在运行的容器信息dockerrun-d--nametest2nginx:
分类:
其他好文 时间:
2020-05-25 16:13:16
阅读次数:
464
command args参数 示例1: spec: containers: - name: liveness image: busybox command: ["sh", "-c"] args: - /bin/sh - -c - echo ok > /tmp/health; sleep 10; rm ...
分类:
其他好文 时间:
2020-05-24 16:27:40
阅读次数:
66
DataNode主机上的AppMaster向ResoureSchedule请求资源, ResoureSchedule 向 AppMaster 返回资源. 同时这个过程是异步的. AppMaster是一个yarn任务运行时第一个由RM启动的container,然后负责整个任务的运行,包括contain... ...
分类:
其他好文 时间:
2020-05-24 11:29:17
阅读次数:
50
https://www.cnblogs.com/jhxxb/p/10987058.html 安装时遇到的问题 yum 被锁定 sudo rm -f /var/run/yum.pid 参考了这个文章 https://www.wanhebin.com/linux/317.html ...
分类:
其他好文 时间:
2020-05-24 11:28:42
阅读次数:
93
git 可视化软件 SourceTree git的基本操作: 回滚暂存区: 提交到暂存区和版本区 打印出所有提交的版本号,可以进行版本回滚 暂存区和版本区都回滚到指定版本 删除本地文件 删除暂存区里面所有的文件(本地文件库没有修改) git rm --cached 展示当前工作目录下面的所有文件夹, ...
分类:
其他好文 时间:
2020-05-23 18:28:52
阅读次数:
64