Commit 4f8e314c authored by Joab Bremer's avatar Joab Bremer

centos 6

parent 3507c2e7
#!/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
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"
mkdir -p /run/zabbix/
chown zabbix. /run/zabbix
service zabbix-agent2 start
chkconfig zabbix-agent2 on
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