Commit b33a041d authored by Joab Bremer's avatar Joab Bremer

install script

parent 87634ada
#!/bin/bash
if [ "$#" -ne 2 ]; then
echo "Uso: $0 <Novo_IP> <Novo_Hostname>"
exit 1
fi
NOVO_IP=$1
NOVO_HOSTNAME=$2
CONFIG_FILE="/etc/zabbix/zabbix_agent2.conf"
mkdir /zabbix_files
cd /zabbix_files
echo "Baixando Arquivos..."
wget https://git.usb.org.br/infra/zabbix/raw/master/zabbix_v2/Centos%207/agent2/pcre2-10.23-2.el7.x86_64.rpm
wget https://git.usb.org.br/infra/zabbix/raw/master/zabbix_v2/Centos%207/agent2/zabbix-agent2-7.0.0-release1.el7.x86_64.rpm -P /zabbix_files
wget https://git.usb.org.br/infra/zabbix/raw/master/zabbix_v2/Centos%207/agent2/zabbix-agent2-plugin-ember-plus-7.0.0-release1.el7.x86_64.rpm -P /zabbix_files
wget https://git.usb.org.br/infra/zabbix/raw/master/zabbix_v2/Centos%207/agent2/zabbix-agent2-plugin-mongodb-7.0.0-release1.el7.x86_64.rpm -P /zabbix_files
wget https://git.usb.org.br/infra/zabbix/raw/master/zabbix_v2/Centos%207/agent2/zabbix-agent2-plugin-mssql-7.0.0-release1.el7.x86_64.rpm -P /zabbix_files
wget https://git.usb.org.br/infra/zabbix/raw/master/zabbix_v2/Centos%207/agent2/zabbix-agent2-plugin-postgresql-7.0.0-release1.el7.x86_64.rpm -P /zabbix_files
wget https://git.usb.org.br/infra/zabbix/raw/master/zabbix_v2/Centos%207/agent2/zabbix-get-7.0.0-release1.el7.x86_64.rpm -P /zabbix_files
wget https://git.usb.org.br/infra/zabbix/raw/master/zabbix_v2/Centos%207/agent2/zabbix-sender-7.0.0-release1.el7.x86_64.rpm -P /zabbix_files
echo "instalando zabbix-agent2..."
yum -y install /zabbix_files/*.rpm
echo "Configurando..."
sed -i "s/^Server=.*/Server=$NOVO_IP/" "$CONFIG_FILE"
sed -i "s/^Hostname=.*/Hostname=$NOVO_HOSTNAME/" "$CONFIG_FILE"
sed -i "s/^ServerActive=.*/#&/" "$CONFIG_FILE"
echo "Configurações atualizadas com sucesso no arquivo $CONFIG_FILE:"
echo "Server=$NOVO_IP"
echo "Hostname=$NOVO_HOSTNAME"
echo "Instalação Concluida"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment