Simple Linux Panel
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
mdserver-web/plugins/zabbix/versions/7.0/alma.sh

44 lines
1.1 KiB

#!/bin/bash
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
export PATH
curPath=`pwd`
rootPath=$(dirname "$curPath")
rootPath=$(dirname "$rootPath")
serverPath=$(dirname "$rootPath")
sourcePath=${serverPath}/source
sysName=`uname`
SYS_VERSION_ID=`cat /etc/*-release | grep VERSION_ID | awk -F = '{print $2}' | awk -F "\"" '{print $2}'`
# 检查是否通
# zabbix_get -s 127.0.0.1 -k agent.ping
Install_App()
{
yum install -y glibc-langpack-zh
mkdir -p $serverPath/source/zabbix
ZABBIX_NAME=zabbix-release-7.0-4.el${SYS_VERSION_ID:0:1}.noarch.rpm
rpm -Uvh https://repo.zabbix.com/zabbix/7.0/alma/${SYS_VERSION_ID:0:1}/x86_64/${ZABBIX_NAME}
# cd $serverPath/source/zabbix && rpm -Uvh ${ZABBIX_NAME}
dnf install -y zabbix-server-mysql zabbix-web-mysql zabbix-sql-scripts zabbix-selinux-policy
dnf install -y zabbix-agent
}
Uninstall_App()
{
dnf remove -y zabbix-server-mysql zabbix-web-mysql zabbix-sql-scripts zabbix-selinux-policy
dnf install -y zabbix-agent
rm -rf /etc/zabbix
echo "卸载成功"
}
action=${1}
if [ "${1}" == 'install' ];then
Install_App
else
Uninstall_App
fi