摘要: 命令安装: # 1、去官网下载jdk tar.gz文件 wget --no-check-certificate --no-cookies --header "Cookie: oraclelicense=accept-securebackup-cookie" http://download.oracl 阅读全文
posted @ 2016-04-28 13:48 三角形 阅读(348) 评论(0) 推荐(0) 编辑
摘要: 1 #!/bin/bash 2 3 # 4 # 1、配置yum源 5 # 6 7 cat /etc/redhat-release |grep -i centos |grep '6.[[:digit:]]' &>/dev/null 8 9 if [[ $? != 0 ]] 10 then 11 echo -e "不支持的操作系统,该脚本只适用于CentOS ... 阅读全文
posted @ 2016-04-28 02:32 三角形 阅读(1221) 评论(0) 推荐(0) 编辑
摘要: 1 #!/bin/bash 2 3 # 4 # 0、配置无人值守的安装,定义安装过程中需要用到的一些信息 5 # 6 mysql_root_pw=root_pw 7 mysql_zabbix_pw=zabbix_pw 8 DBPassword=$mysql_zabbix_pw 9 CacheSize=256M 10 ZBX_SERVER_NAME=My-Zabbix-S... 阅读全文
posted @ 2016-04-28 02:31 三角形 阅读(326) 评论(0) 推荐(0) 编辑