安装zabbix agent shell 脚本

简介:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/bin/bash
[ -d  /usr/local/zabbix  ] &&  echo  "/usr/local/zabbix exist"  &&  exit
if  ps  -ef |  grep  zabbix_agentd |  grep  - v  grep  then
echo  "zabbix agent is installed"
exit
fi
yum  install  -y autoconf automake imake libxml2-devel expat-devel cmake gcc gcc-c++ libaio libaio-devel bzr bison libtool ncurses5-devel net-snmp\* libxml2 libxml2-devel  bzip2  libpng-devel freetype-devel  bzip2 -devel curl* curl-devel libjpeg\* openjpeg\*
if  [ $? != 0 ] ; then
echo  -e  "\033[31mInstall rpm failed\033[0m"
exit  0
fi
useradd  zabbix
cd  /tmp
wget http: //10 .10.45.81:8000 /zabbix-3 .2.6. tar .gz
tar  zvxf zabbix-3.2.6. tar .gz
cd  zabbix-3.2.6
. /configure  --prefix= /usr/local/zabbix  -- enable -agent --with-mysql --with-net-snmp --with-libcurl --with-libxml2
make
make  install
while  true
do
ifconfig
echo  -e  "\033[31mPlease input network\033[0m"
read  input
if  ifconfig  $input> /dev/null  then
ip=` ifconfig  $input |  grep  "inet addr"  awk  '{print $2}'  awk  -F  ':'  '{print $2}' `
echo  $ip
break
else
echo  -e  "\033[31mInput Err\033[0m"
fi
done
sed  -i  's/Server=127.0.0.1/Server=10.10.45.152/g'  /usr/local/zabbix/etc/zabbix_agentd .conf
sed  -i  's/ServerActive=127.0.0.1/ServerActive=10.10.45.152/g'  /usr/local/zabbix/etc/zabbix_agentd .conf
sed  -i  "s/Hostname=Zabbix server/Hostname=$ip/g"  /usr/local/zabbix/etc/zabbix_agentd .conf
echo  "------------------------------- show zabbix agent conf file -------------------------------"
awk  '/^[^#]/'  /usr/local/zabbix/etc/zabbix_agentd .conf
/usr/local/zabbix/sbin/zabbix_agentd
if  grep  zabbix_agentd  /etc/rc . local  > /dev/null  ; then
echo  -e  "\033[31mNo need change rc.local\033[0m"
else 
echo  "/usr/local/zabbix/sbin/zabbix_agentd"  >>  /etc/rc . local
fi
相关文章
|
9天前
|
监控 Unix Shell
shell脚本编程学习
shell脚本编程
31 12
|
5天前
|
存储 运维 监控
自动化运维:使用Shell脚本简化日常任务
【9月更文挑战第35天】在IT运维的日常工作中,重复性的任务往往消耗大量的时间。本文将介绍如何通过编写简单的Shell脚本来自动化这些日常任务,从而提升效率。我们将一起探索Shell脚本的基础语法,并通过实际案例展示如何应用这些知识来创建有用的自动化工具。无论你是新手还是有一定经验的运维人员,这篇文章都会为你提供新的视角和技巧,让你的工作更加轻松。
16 2
|
13天前
|
Shell
shell脚本变量 $name ${name}啥区别
shell脚本变量 $name ${name}啥区别
|
16天前
|
人工智能 监控 Shell
常用的 55 个 Linux Shell 脚本(包括基础案例、文件操作、实用工具、图形化、sed、gawk)
这篇文章提供了55个常用的Linux Shell脚本实例,涵盖基础案例、文件操作、实用工具、图形化界面及sed、gawk的使用。
29 2
|
1月前
|
Shell
Shell脚本有哪些基本语法?
【9月更文挑战第4天】
45 17
|
1月前
|
存储 Unix Shell
shell脚本编程基础
【9月更文挑战第4天】
37 12
|
1月前
|
网络协议 关系型数据库 MySQL
Shell 脚本案例
Shell 脚本案例
37 8
|
1月前
|
Shell Linux 开发工具
linux shell 脚本调试技巧
【9月更文挑战第3天】在Linux中调试shell脚本可采用多种技巧:使用`-x`选项显示每行命令及变量扩展情况;通过`read`或`trap`设置断点;利用`echo`检查变量值,`set`显示所有变量;检查退出状态码 `$?` 进行错误处理;使用`bashdb`等调试工具实现更复杂调试功能。
|
2月前
|
运维 监控 Shell
自动化运维之宝:编写高效的Shell脚本
【8月更文挑战第31天】在运维的世界里,Shell脚本是一把瑞士军刀,它让日常任务变得简单而高效。本文将通过浅显易懂的语言和实际案例,带你领略Shell脚本的魅力,并教你如何打造属于自己的自动化工具箱。无论你是初学者还是资深运维,这篇文章都将为你打开一扇窗,让你看到不一样的风景。让我们一起探索Shell脚本的世界吧!
|
2月前
|
存储 Shell 数据安全/隐私保护
minio一键安装脚本分享(shell和python)
minio一键安装脚本分享(shell和python)
47 0

推荐镜像

更多