上一页 1 ··· 7 8 9 10 11 12 13 14 15 16 下一页

sed

摘要: 2.1 正则表达式 在介绍 sed 和 awk 之前,首先需要介绍正则表达式的使用。 正则表达式(regular expression)是描述一种字符串匹配的模式,常用来检查一个字符串或文件中是否含有特定的字符串,以便对其进行替换、删除、插入等操作.很多编程语言都支持正则表达式,如:php、perl 阅读全文
posted @ 2022-05-16 17:52 Colin88 阅读(536) 评论(0) 推荐(0)

普通用户使用docker

摘要: 添加执行 docker 命令的用户,这里为 ibaboss useradd ibaboss 把 user1 用户加入 docker 组 usermod -G docker user1 加入多个组 usermod -G docker,es ibaboss su - ibaboss docker ps 阅读全文
posted @ 2022-05-16 17:11 Colin88 阅读(365) 评论(0) 推荐(0)

[Linux]红帽高级存储功能 - Stratis与VDO

摘要: 转: Redhat8.0 Stratis和Vdo高级存储以及初级实战演练-CSDN博客_红帽vdo Stratis Stratis 是一个卷管理文件系统volume-managing filesystem(VMF),类似于 ZFS 和 Btrfs。它使用了存储“池”的核心思想,该思想被各种 VMF 阅读全文
posted @ 2022-05-14 13:30 Colin88 阅读(854) 评论(0) 推荐(0)

mysql变量查询

摘要: # 大小写 show variables like '%lower_case_table_names%'; # 字符集 show variables like 'character%'; show variables like '%char%'; 阅读全文
posted @ 2022-05-13 14:48 Colin88 阅读(70) 评论(0) 推荐(0)

centos7 mysql5.6 主从复制

摘要: 官方手册 MySQL :: MySQL 5.6 参考手册 :: 17 复制 转 架构与思维:高并发下解决主从延时的一些思路 - Hello-Brand - 博客园 (cnblogs.com) 如何基于生产环境mysql 5.6.25主从部署新的mysql从库操作指南_ITPUB博客 mysql的主从 阅读全文
posted @ 2022-05-11 22:47 Colin88 阅读(50) 评论(0) 推荐(0)

Mysql主从复制原理及配置

摘要: Mysql主从复制原理及配置 Mysql主从复制原理及配置 1.复制概述 Mysql内建的复制功能是构建大型,高性能应用程序的基础。将Mysql的数据分布到多个系统上去,这种分布的机制,是通过将Mysql的某一台主机的数据复制到其它主机(slaves)上,并重新执行一遍来实现的。复制过程中一个服务器 阅读全文
posted @ 2022-05-11 22:34 Colin88 阅读(72) 评论(0) 推荐(0)

Dockerfile

摘要: CMD指令在从映像运行容器时设置要执行的命令。 您可以使用shell形式或exec形式指定CMD指令: CMD [“可执行文件”,“参数1”,“参数2”](exec形式) CMD [“参数1”,“参数2”](exec形式,作为ENTRYPOINT的默认参数) CMD 命令 参数1 参数2(shell 阅读全文
posted @ 2022-05-07 18:05 Colin88 阅读(75) 评论(0) 推荐(0)

Linux命令自动补全

摘要: 安装 bash-completion 很多包管理工具均支持 bash-completion(参见这里)。 可以通过 apt-get install bash-completion 或 yum install bash-completion 等命令来安装它。 上述命令将创建文件 /usr/share/ 阅读全文
posted @ 2022-04-30 17:14 Colin88 阅读(270) 评论(0) 推荐(0)

docker-ce安装

摘要: 安装必要的一些系统工具 yum install -y yum-utils 添加软件源信息 yum-config-manager --add-repo https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo 替换为ce sed 阅读全文
posted @ 2022-04-30 16:46 Colin88 阅读(72) 评论(0) 推荐(0)

centos7升级openssl

摘要: 一、系统环境介绍以及准备如下 1、查看系统版本:cat /etc/redhat-release 2、查看openssl版本:openssl version 或者openssl version -a 3、官网下载openssl-1.1.1n,其他版本可参考下载:wget https://www.ope 阅读全文
posted @ 2022-04-29 10:42 Colin88 阅读(710) 评论(0) 推荐(0)
上一页 1 ··· 7 8 9 10 11 12 13 14 15 16 下一页