mirror of https://github.com/midoks/mdserver-web
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.
45 lines
1.2 KiB
45 lines
1.2 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-6.0-4.sles${SYS_VERSION_ID:0:2}.noarch.rpm
|
|
|
|
rpm -Uvh https://repo.zabbix.com/zabbix/6.0/sles/${SYS_VERSION_ID:0:2}/x86_64/${ZABBIX_NAME}
|
|
echo "rpm -Uvh https://repo.zabbix.com/zabbix/6.0/sles/${SYS_VERSION_ID:0:2}/x86_64/${ZABBIX_NAME}"
|
|
|
|
# cd $serverPath/source/zabbix && rpm -Uvh ${ZABBIX_NAME}
|
|
zypper install -y zabbix-server-mysql zabbix-web-mysql zabbix-sql-scripts zabbix-selinux-policy
|
|
zypper install -y zabbix-agent
|
|
}
|
|
|
|
Uninstall_App()
|
|
{
|
|
zypper remove -y zabbix-server-mysql zabbix-web-mysql zabbix-sql-scripts zabbix-selinux-policy
|
|
zypper remove -y zabbix-agent
|
|
rm -rf /etc/zabbix
|
|
echo "卸载成功"
|
|
}
|
|
|
|
action=${1}
|
|
if [ "${1}" == 'install' ];then
|
|
Install_App
|
|
else
|
|
Uninstall_App
|
|
fi
|
|
|