码迷,mamicode.com
首页 >  
搜索关键字:ansible keepalived ngxin    ( 4939个结果
分享一个实用脚本—管理端批量SSH免密,值得收藏
概述 今天主要分享一个批量ssh免密脚本,仅供参考。 需求 管理端有多台服务器,维护几百台服务器的时候需配置ssh免密,但密码很多特殊字符,如果用expect是很难处理的,故python脚本实现。 环境准备 1、安装fabric python3环境 pip install fabric 2、准备管理 ...
分类:其他好文   时间:2020-12-31 12:46:55    阅读次数:0
Keepalived+Nginx实现负载均衡
概念 nginx可以实现tomcat的负载均衡,但nginx本身存在单点故障隐患,需要多个nginx之间实现高可用热备,解决方案有: 1、阿里云LBS:阿里某博士开发的,整合到了linux内核中,使用需要付费 2、硬件负载均衡器:如F5、Radware等 3、软件方式实现负载均衡:Keepalive ...
分类:其他好文   时间:2020-12-21 11:42:19    阅读次数:0
Linux 系统初始化准备
1、我们在生产环境中我们需要对服务器系统配置相关优化参数,以下为Centos 7系统相关常用软件安装以及系统参数配置 setenforce 0 sed -i 's/SELINUX=enforcing/SELINUX=disabled/g' /etc/selinux/config sed -i 's/ ...
分类:系统相关   时间:2020-12-19 13:21:26    阅读次数:2
SaaS技术栈有多复杂?
【特别声明:本文基于Tools and Services I Use to Run My SaaS进行修改。】 软件SaaS化由于需要考量架构的各个方面,所以需要的技术栈非常全面。 以一个客户管理SaaS应用为例,可能涉及的技术栈包括: 开发 开发就是把系统做出来的意思。开发涉及编码、项目管理、测试 ...
分类:其他好文   时间:2020-12-11 12:06:48    阅读次数:4
keepalived
keepalived配置文件 ! Configuration File for keepalived global_defs { notification_email { root@localhost } notification_email_from root@localhost smtp_ser ...
分类:其他好文   时间:2020-12-09 12:31:15    阅读次数:14
ansible playbook 安装docker
1.新增host配置到/etc/ansible/hosts文件中 [docker] 192.168.43.95 2.配置无密码登录 # 配置ssh,默认rsa加密,保存目录(公钥)~/.ssh/id_rsa.pub ssh-keygen -t rsa # 配置无密码登陆,这里需要分别4次发送至4台服 ...
分类:其他好文   时间:2020-12-09 12:17:15    阅读次数:4
ansible部署jdk
[root@node1 tasks]# cat main.yml name: 拷贝JKD到目标服务器 unarchive: src={{ jdk_pkg }} dest={{ jdk_dir }} mode=755 name: 添加环境变量 blockinfile: dest: /etc/profi ...
分类:其他好文   时间:2020-12-09 12:12:06    阅读次数:6
# ad-hoc篇
##1、--list-hosts # 查看所有配置主机 ansible all --list-hosts #查看tt主机组主机 ansible tt --list-hosts ##2、shell模块 语法: ansible [主机组] -m shell -a '[参数]' 注:复杂命令会有出错得可能 ...
分类:其他好文   时间:2020-12-04 11:29:42    阅读次数:5
Keepalived 和 Firewalld.md
准备 MASTER IP 192.168.1.7 BACKUP IP 192.168.1.8 VIP 192.168.1.200 yum install keepalived systemctl stop firewalld echo "net.ipv4.ip_forward = 1" >> /et ...
分类:其他好文   时间:2020-12-03 12:15:51    阅读次数:6
批量抓包
-hosts:allvars:cap_file:packet_capture_{{ansible_hostname}}.pcaptasks:-name:starttcpdump#command:/usr/sbin/tcpdump-nnviany‘port80‘-s0-B65535-C50M-W100-w/data/tmp/{{cap_file}}command:/usr/sbin/tcpdump-
分类:其他好文   时间:2020-12-02 12:46:20    阅读次数:26
4939条   上一页 1 ... 4 5 6 7 8 ... 494 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!