From 7cf90a86c54c8036defc5c0ac8c0700882c4dd06 Mon Sep 17 00:00:00 2001 From: ubuntu <ubuntu@ubuntu.com> Date: Tue, 26 Jun 2018 11:46:23 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=AE=A2=E6=88=B7=E7=AB=AF?= =?UTF-8?q?=E8=87=AA=E5=8A=A8=E9=83=A8=E7=BD=B2=E8=84=9A=E6=9C=AC:=20clien?= =?UTF-8?q?t-auto.sh=EF=BC=8C=E4=BB=A3=E7=A0=81=E6=89=80=E6=9C=89:=20https?= =?UTF-8?q?://github.com/dovela?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- autodeploy/client-auto.sh | 99 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 99 insertions(+) create mode 100644 autodeploy/client-auto.sh diff --git a/autodeploy/client-auto.sh b/autodeploy/client-auto.sh new file mode 100644 index 0000000..bc828dc --- /dev/null +++ b/autodeploy/client-auto.sh @@ -0,0 +1,99 @@ +#!/bin/bash +# author: https://github.com/dovela/ServerStatus1Click +# 支持操作系统:centos,debian,ubuntu,redhat 其它未测试 +# 时间: 20180626 + +[ $(id -u) != "0" ] && { echo "Error: You must be root to run this script"; exit 1; } +install_sss(){ + clear + stty erase '^H' && read -p " 服务端地址:" sserver + stty erase '^H' && read -p " 客户端username:" suser + stty erase '^H' && read -p " 客户端password:" spasswd + clear + git clone https://github.com/dovela/ServerStatus.git + rm -rf oneclick.sh + echo 'ServerStatus客户端安装完成' + cd ServerStatus/clients + sed -i -e "s/sserver/$sserver/g" client-linux.py + sed -i -e "s/suser/$suser/g" client-linux.py + sed -i -e "s/spasswd/$spasswd/g" client-linux.py + sed -i -e "s/sserver/$sserver/g" client-psutil.py + sed -i -e "s/suser/$suser/g" client-psutil.py + sed -i -e "s/spasswd/$spasswd/g" client-psutil.py + clear + echo ' ServerStatus客户端配置完成,请进行下一步' + echo ' 1. 运行 client-linux' + echo ' 2. 运行 client-psutil' + stty erase '^H' && read -p " 请输入数字 [1-2]:" num + case "$num" in + 1) + run_linux + ;; + 2) + run_psutil + ;; +esac +} + +run_linux(){ + nohup python client-linux.py >> serverstatus.log 2>&1 & + cd ../.. + echo 'ServerStatus-linux客户端已开始运行' +} + +run_psutil(){ + nohup python client-psutil.py >> serverstatus.log 2>&1 & + cd ../.. + echo 'ServerStatus-psutil客户端已开始运行' +} + +install_env(){ + clear + yum install -y git lsof + apt-get install -y git lsof + yum -y install epel-release + yum clean all + yum -y install python-pip gcc python-devel + apt-get -y install python-setuptools python-dev build-essential python-pip + pip install --upgrade + pip install psutil + clear + echo '依赖环境安装完成,请再次运行脚本' +} + +clear +echo -e " 注意:此脚本基于centos7编写,默认端口35601,出现问题请在 @dovela 处提issue + +———————————— + 1.首次安装并启动 ServerStatus客户端 + 2.运行 client_linux + 3.运行 client_psutil + 4.停止运行 + 5.首次安装依赖,直接安装失败请执行 +———————————— + 输入数字开始,或ctrl + c退出 +" +echo && stty erase '^H' && read -p " 请输入数字[1-5]:" num + case "$num" in + 1) + install_sss + ;; + 2) + cd ServerStatus/clients + run_linux + ;; + 3) + cd ServerStatus/clients + run_psutil + ;; + 4) + kill -9 $(lsof -i:35601 |awk '{print $2}' | tail -n 1) + ;; + 5) + install_env + ;; + *) + echo -e "${Error} 请输入正确的数字 [1-5]!" + ;; +esac +