加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
install 550 Bytes
一键复制 编辑 原始数据 按行查看 历史
zhongl 提交于 2017-10-26 15:06 . Add installation script.
#! /bin/bash
# This script for install easeagent in your host.
CUR=`pwd`
function download() {
curl -Lk https://github.com/megaease/release/releases/download/easeagent/easeagent.jar -O
}
function extract_configuration() {
jar vxf easeagent.jar application.conf log4j2.xml
}
function setup_javaopts() {
export JAVA_OPTS="${JAVA_OPTS} -javaagent:$CUR/easeagent.jar=$CUR/application.conf -Deaseagent.log.conf=$CUR/log4j2.xml"
echo "Export JAVA_OPTS=$JAVA_OPTS"
}
download && extract_configuration && setup_javaopts && echo "Done."
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化