Linux记录-批量安装zabbix(转载)】的更多相关文章

同一文件夹下建立pwd.txt,格式如下: ip username password ip username password #!/bin/bash cat pwd.txt | while read line do hostip=`echo $line | cut -d" " -f1` uname=`echo $line | cut -d" " -f2` pwd=`echo $line | cut -d" " -f3` /usr/bin/exp…
#!/bin/bash # Describe: This is a one - button installation service script # 提示:使用此脚本时,尽量先选择第一项配置Yum源! red_col="\e[1;31m" reset_col="\e[0m" LOG_DIR=/usr/local/src . /etc/init.d/functions MMM=`rpm -qa | grep mariadb` #node 1. function c…
首先,需要检查expect是否安装:rpm -qa|grep expect 然后,在操作机上创建公钥:ssh-keygen 一路回车即可 创建好之后到/root/.ssh/下就可以看到id开头的2个文件,其中id_rsa.pub就是公钥文件,需要做的就是将这个文件传送给其他机器:ssh-copy-id -i /root/.ssh/id_rsa.pub root@ip 最后ssh root@ip就实现无密码登录了. #!/bin/bash #2013-04-08 #author myhoop #b…
#!/bin/bash # 安装函数 install(){    for soft in $*    do         echo "$soft"安装中...         yum -y install $soft &>/dev/null         if [ $? -ne 0 ];then #                echo "$soft"安装失败                 echo "$soft"安装失败…
Zabbix 4.0.2试用(七):在Linux主机中安装zabbix agent并添加主机(yum源安装) 2018年12月20日, 上午6:42 之前介绍的是下载源安装包,编译安装的方式来安装agent,本次将采用yum源方式安装,前提是主机需要与互联网相通,操作如下: 1.关闭防火墙和SELINUX 使用root用户登陆系统: 首先查看防火墙状态 [root@zabbix ~]# firewall-cmd –state running [root@zabbix ~]# 关闭firewall…
Redis进阶实践之一VMWare Pro虚拟机安装和Linux系统的安装 一.引言 设计模式写完了,相当于重新学了一遍,每次学习都会有不同的感受,对设计模式的理解又加深了,理解的更加透彻了.还差一篇关于设计模式的总结的文章了,写完这篇总结性的文章,设计模式的文章就暂时要告一段了,这篇总结性的文章我会尽快补上的.从今天开始,我就把我学习Redis的过程记录下载,以备以后查询观看.很久以前就接触过Redis,但是还没形成体系,最近有时间,就重新来学习一下,争取系统性的掌握Redis的各个方面.好了…
目录结构 # tree /etc/ansible/ /etc/ansible/ ├── ansible.cfg ├── hosts ├── roles │   └── zabbix-agentd │       ├── files │       │   ├── install_zabbix.sh │       │   └── zabbix-3.4.1.tar.gz │       ├── handlers │       ├── tasks │       │   └── mail.yaml…
python -m SimpleHTTPServer 8888#!/bin/bash sed -i 's/^#//g' /etc/yum.repos.d/centos7.4.repo sed -i 's/enabled=0/enabled=1/g' /etc/yum.repos.d/centos7.4.repo rm -rf /etc/salt/pki/minion/minion_master.pub systemctl stop firewalld.service systemctl disa…
1.原理 awk,一个行文本处理工具,逐行处理文件中的数据 语法:awk 'pattern + {action}' 说明:(1)单引号''是为了和shell命令区分开:(2)大括号{}表示一个命令分组:(3)pattern是一个过滤器,表示命中pattern的行才进行action处理:(4)action是处理动作:(5)使用#作为注释: pattern参数可以是egrep正则中的一个,正则使用/pattern/ 例子:显示hello.txt中的第3行至第5行:cat hello.txt | aw…
#!/bin/bash path=. for file in $(ls $path) do if [ -f $file ] then filename=${file%.*} bak=${file#*.} if [ $bak == "$1" ] then mv $filename"."$1 $filename"."$2 fi fi done exit 0 执行:sh mv.sh sh doc…