乐天 Blog

Linux MySQL jenkins docker shell.

traefik最佳实践

最佳实践

traefik最佳实践 (1) 证书生成,使用下面的 openssl 命令生成 CA 证书: openssl req -newkey rsa:2048 -nodes -keyout tls.key -x509 -days 365 -out tls.crt (2) 现在我们有了证书,我们可以使用 kubectl 创建一个 secret 对象来存储上面的证书: kubectl crea...

Redis _conf最优配置

最佳实践

Redis _conf最优配置 bind 0.0.0.0 127.0.0.1 #绑定IP port 6379 tcp-backlog 511 timeout 0 tcp-keepalive 300 daemonize yes #是否开启后台运行 supervised no pidfile /var/run/redis_6379.pid loglevel notice logfile "/op...

Linux增加LVM分区

Linux增加LVM分区

Linux增加LVM分区 shell> fdisk /dev/sdb #### 选择磁盘 Command (m for help): m #### 帮助 Command action a toggle a bootable flag b edit ...

MySQL-redolog与binlog的一致性

原理

MySQL-redolog与binlog的一致性 binlog与redo的一致性 使用 内部分布式事物 来保证一致性 在 commit 时(无论用户自己输入,或者系统自动添加),会有如下几个步骤: 1. InnoDB 层 写 prepare log 写的还是 redo file (或者就是redo log,只是内容不一样,这里不是记录页的变化了) 写入的是 xid (事物id,sho...

MySQL高可用方案之replication-manager

实践出真知

MySQL高可用方案之Replication-Manager (1)Replication-Manager 主要用于mysql主从结构的监控和主从切换. (2) 代码仓库: https://github.com/signal18/replication-manager (3) 官方文档:https://docs.signal18.io/installation/setup-instru...

percona工具pt-table-checksum

实战

percona工具pt-table-checksum 安装 官网地址 https://www.percona.com/software/database-tools/percona-toolkit 下载最新版本 安装依赖包 yum install -y perl-DBI perl-DBD-MySQL perl-Time-HiRes perl-IO-Socket-SSL yum loac...

MySQL 权限分配

搭建

MySQL 权限分配 读写权限 mysql>show grants for wr; +------------------------------------------------------+ | Grants for wr@% | +------------------------------------------...

阿里云kibana安装sentinl实现邮件报警

sentinl

阿里云kibana安装sentinl实现邮件报警 (1) sentinl github地址:https://github.com/sirensolutions/sentinl (2) sentinl github个版本地址:https://github.com/sirensolutions/sentinl/releases (3) 安装sentinl 1、 下载自己需要的版本,我这里ki...

Nginx使用 X-Frame-Options 防止被iframe 造成跨域iframe 提交挂掉

nginx

Nginx使用 X-Frame-Options 防止被iframe 造成跨域iframe 提交挂掉 Refused to display 'http://www.***.com/org/***' in a frame because it set 'X-Frame-Options' to 'SAMEORIGIN'. 触发原因:页面的返回头被设置 X-Frame-Options SAMEOR...

利用Google Authenticator二次验证打造安全linux运维

实践

利用Google Authenticator二次验证打造安全linux运维 linux服务器安全至上,为了防止黑客非法暴力破解linux密码,我们可以利用Google Authenticator二次验证打造安全服务器远程登录,具体配置如下: 一、关闭 SELinux [root@wyw ~]# vim /etc/selinux/config #永久关闭。需要reboot重启后生效 ...