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.

880 lines
29 KiB

1 year ago
  1. #!/bin/bash
  2. #########################
  3. # 广东堡塔安全技术有限公司
  4. # author: 赤井秀一
  5. # mail: [email protected]
  6. #########################
  7. PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
  8. export PATH
  9. LANG=en_US.UTF-8
  10. Btapi_Url='http://www.example.com'
  11. is64bit=$(getconf LONG_BIT)
  12. if [ "${is64bit}" != '64' ];then
  13. echo -e "\033[31m 抱歉, 堡塔云监控系统不支持32位系统, 请使用64位系统! \033[0m"
  14. exit 1
  15. fi
  16. S390X_CHECK=$(uname -a|grep s390x)
  17. if [ "${S390X_CHECK}" ];then
  18. echo -e "\033[31m 抱歉, 堡塔云监控系统不支持s390x架构进行安装,请使用x86_64服务器架构 \033[0m"
  19. exit 1
  20. fi
  21. is_aarch64=$(uname -a|grep aarch64)
  22. if [ "${is_aarch64}" != "" ];then
  23. echo -e "\033[31m 抱歉, 堡塔云监控系统暂不支持aarch64架构进行安装,请使用x86_64服务器架构 \033[0m"
  24. exit 1
  25. fi
  26. Command_Exists() {
  27. command -v "$@" >/dev/null 2>&1
  28. }
  29. GetSysInfo(){
  30. if [ -s "/etc/redhat-release" ];then
  31. SYS_VERSION=$(cat /etc/redhat-release)
  32. elif [ -s "/etc/issue" ]; then
  33. SYS_VERSION=$(cat /etc/issue)
  34. fi
  35. SYS_INFO=$(uname -a)
  36. SYS_BIT=$(getconf LONG_BIT)
  37. MEM_TOTAL=$(free -m|grep Mem|awk '{print $2}')
  38. CPU_INFO=$(getconf _NPROCESSORS_ONLN)
  39. echo -e ${SYS_VERSION}
  40. echo -e Bit:${SYS_BIT} Mem:${MEM_TOTAL}M Core:${CPU_INFO}
  41. echo -e ${SYS_INFO}
  42. echo -e "请截图以上报错信息发帖至论坛www.bt.cn/bbs求助"
  43. }
  44. Red_Error(){
  45. echo '=================================================';
  46. printf '\033[1;31;40m%b\033[0m\n' "$@";
  47. GetSysInfo
  48. exit 1;
  49. }
  50. monitor_path="/www/server/bt-monitor"
  51. run_bin="/www/server/bt-monitor/BT-MONITOR"
  52. if [ ! -d "/www/server" ];then
  53. mkdir -p /www/server
  54. fi
  55. old_dir="/www/server/old_btmonitor"
  56. cd ~
  57. setup_path="/www"
  58. python_bin=$setup_path/server/bt-monitor/pyenv/bin/python
  59. cpu_cpunt=$(cat /proc/cpuinfo|grep processor|wc -l)
  60. get_node_url(){
  61. if [ ! -f /bin/curl ];then
  62. if [ "${PM}" = "yum" ]; then
  63. yum install curl -y
  64. elif [ "${PM}" = "apt-get" ]; then
  65. apt-get install curl -y
  66. fi
  67. fi
  68. if [ -f "/www/node.pl" ];then
  69. download_Url=$(cat /www/node.pl)
  70. echo "Download node: $download_Url";
  71. echo '---------------------------------------------';
  72. return
  73. fi
  74. echo '---------------------------------------------';
  75. echo "Selected download node...";
  76. # nodes=(http://dg2.bt.cn http://dg1.bt.cn http://125.90.93.52:5880 http://36.133.1.8:5880 http://123.129.198.197 http://38.34.185.130 http://116.213.43.206:5880 http://128.1.164.196);
  77. #nodes=(http://dg2.bt.cn http://dg1.bt.cn http://125.90.93.52:5880 http://36.133.1.8:5880 http://123.129.198.197 http://116.213.43.206:5880 http://128.1.164.196);
  78. nodes=(https://dg2.bt.cn https://dg1.bt.cn https://download.bt.cn);
  79. tmp_file1=/dev/shm/net_test1.pl
  80. tmp_file2=/dev/shm/net_test2.pl
  81. [ -f "${tmp_file1}" ] && rm -f ${tmp_file1}
  82. [ -f "${tmp_file2}" ] && rm -f ${tmp_file2}
  83. touch $tmp_file1
  84. touch $tmp_file2
  85. for node in ${nodes[@]};
  86. do
  87. NODE_CHECK=$(curl --connect-timeout 3 -m 3 2>/dev/null -w "%{http_code} %{time_total}" ${node}/net_test|xargs)
  88. RES=$(echo ${NODE_CHECK}|awk '{print $1}')
  89. NODE_STATUS=$(echo ${NODE_CHECK}|awk '{print $2}')
  90. TIME_TOTAL=$(echo ${NODE_CHECK}|awk '{print $3 * 1000 - 500 }'|cut -d '.' -f 1)
  91. if [ "${NODE_STATUS}" == "200" ];then
  92. if [ $TIME_TOTAL -lt 100 ];then
  93. if [ $RES -ge 1500 ];then
  94. echo "$RES $node" >> $tmp_file1
  95. fi
  96. else
  97. if [ $RES -ge 1500 ];then
  98. echo "$TIME_TOTAL $node" >> $tmp_file2
  99. fi
  100. fi
  101. i=$(($i+1))
  102. if [ $TIME_TOTAL -lt 100 ];then
  103. if [ $RES -ge 3000 ];then
  104. break;
  105. fi
  106. fi
  107. fi
  108. done
  109. NODE_URL=$(cat $tmp_file1|sort -r -g -t " " -k 1|head -n 1|awk '{print $2}')
  110. if [ -z "$NODE_URL" ];then
  111. NODE_URL=$(cat $tmp_file2|sort -g -t " " -k 1|head -n 1|awk '{print $2}')
  112. if [ -z "$NODE_URL" ];then
  113. NODE_URL='https://download.bt.cn';
  114. fi
  115. fi
  116. rm -f $tmp_file1
  117. rm -f $tmp_file2
  118. download_Url=$NODE_URL
  119. echo "Download node: $download_Url";
  120. echo '---------------------------------------------';
  121. }
  122. Get_Versions(){
  123. redhat_version_file="/etc/redhat-release"
  124. deb_version_file="/etc/issue"
  125. if [ -f $redhat_version_file ];then
  126. os_type='el'
  127. is_aliyunos=$(cat $redhat_version_file|grep Aliyun)
  128. if [ "$is_aliyunos" != "" ];then
  129. return
  130. fi
  131. os_version=$(cat $redhat_version_file|grep CentOS|grep -Eo '([0-9]+\.)+[0-9]+'|grep -Eo '^[0-9]')
  132. if [ "${os_version}" = "5" ];then
  133. os_version=""
  134. fi
  135. if [ -z "${os_version}" ];then
  136. os_version=$(cat /etc/redhat-release |grep Stream|grep -oE 8)
  137. fi
  138. else
  139. os_type='ubuntu'
  140. os_version=$(cat $deb_version_file|grep Ubuntu|grep -Eo '([0-9]+\.)+[0-9]+'|grep -Eo '^[0-9]+')
  141. if [ "${os_version}" = "" ];then
  142. os_type='debian'
  143. os_version=$(cat $deb_version_file|grep Debian|grep -Eo '([0-9]+\.)+[0-9]+'|grep -Eo '[0-9]+')
  144. if [ "${os_version}" = "" ];then
  145. os_version=$(cat $deb_version_file|grep Debian|grep -Eo '[0-9]+')
  146. fi
  147. if [ "${os_version}" = "8" ];then
  148. os_version=""
  149. fi
  150. if [ "${is64bit}" = '32' ];then
  151. os_version=""
  152. fi
  153. else
  154. if [ "$os_version" = "14" ];then
  155. os_version=""
  156. fi
  157. if [ "$os_version" = "12" ];then
  158. os_version=""
  159. fi
  160. if [ "$os_version" = "19" ];then
  161. os_version=""
  162. fi
  163. if [ "$os_version" = "21" ];then
  164. os_version=""
  165. fi
  166. if [ "$os_version" = "20" ];then
  167. os_version2004=$(cat /etc/issue|grep 20.04)
  168. if [ -z "${os_version2004}" ];then
  169. os_version=""
  170. fi
  171. fi
  172. fi
  173. fi
  174. }
  175. Install_Python_Lib(){
  176. curl -Ss --connect-timeout 3 -m 60 $download_Url/install/pip_select.sh|bash
  177. pyenv_path="/www/server/bt-monitor"
  178. if [ -f $pyenv_path/pyenv/bin/python ];then
  179. is_ssl=$($python_bin -c "import ssl" 2>&1|grep cannot)
  180. $pyenv_path/pyenv/bin/python3.7 -V
  181. if [ $? -eq 0 ] && [ -z "${is_ssl}" ];then
  182. chmod -R 700 $pyenv_path/pyenv/bin
  183. is_package=$($python_bin -m psutil 2>&1|grep package)
  184. if [ "$is_package" = "" ];then
  185. wget -O $pyenv_path/pyenv/pip.txt $download_Url/install/pyenv/pip.txt -t 5 -T 10
  186. $pyenv_path/pyenv/bin/pip install -U pip
  187. $pyenv_path/pyenv/bin/pip install -U setuptools
  188. $pyenv_path/pyenv/bin/pip install -r $pyenv_path/pyenv/pip.txt
  189. $pyenv_path/pyenv/bin/pip install -U flask==2.2.0
  190. $pyenv_path/pyenv/bin/pip install flask_sock
  191. $pyenv_path/pyenv/bin/pip install cachelib
  192. $pyenv_path/pyenv/bin/pip install py7zr
  193. $pyenv_path/pyenv/bin/pip install backports.lzma
  194. $pyenv_path/pyenv/bin/pip install pandas
  195. $pyenv_path/pyenv/bin/pip install msgpack
  196. fi
  197. source $pyenv_path/pyenv/bin/activate
  198. chmod -R 700 $pyenv_path/pyenv/bin
  199. return
  200. else
  201. rm -rf $pyenv_path/pyenv
  202. fi
  203. fi
  204. py_version="3.7.9"
  205. if [ ! -d "$pyenv_path" ]; then
  206. mkdir -p $pyenv_path
  207. fi
  208. echo "True" > /www/disk.pl
  209. if [ ! -w /www/disk.pl ];then
  210. Red_Error "ERROR: Install python env fielded." "ERROR: /www目录无法写入,请检查目录/用户/磁盘权限!"
  211. fi
  212. os_type='el'
  213. os_version='7'
  214. is_export_openssl=0
  215. Get_Versions
  216. echo "OS: $os_type - $os_version"
  217. is_aarch64=$(uname -a|grep aarch64)
  218. if [ "$is_aarch64" != "" ];then
  219. is64bit="aarch64"
  220. fi
  221. if [ -f "/www/server/bt-monitor/pymake.pl" ];then
  222. os_version=""
  223. rm -f /www/server/bt-monitor/pymake.pl
  224. fi
  225. if [[ $os_type =~ "debian" ]] || [[ $os_type =~ "ubuntu" ]]; then
  226. isbtm="-btm"
  227. fi
  228. if [ "${os_version}" != "" ];then
  229. pyenv_file="/www/pyenv.tar.gz"
  230. wget -O $pyenv_file $download_Url/install/pyenv/pyenv-${os_type}${os_version}-x${is64bit}${isbtm}.tar.gz -t 5 -T 10
  231. tmp_size=$(du -b $pyenv_file|awk '{print $1}')
  232. if [ $tmp_size -lt 703460 ];then
  233. rm -f $pyenv_file
  234. echo "ERROR: Download python env fielded."
  235. else
  236. echo "Install python env..."
  237. tar zxvf $pyenv_file -C $pyenv_path/ > /dev/null
  238. chmod -R 700 $pyenv_path/pyenv/bin
  239. rm -rf $pyenv_path/pyenv/bin/python
  240. ln -sf $pyenv_path/pyenv/bin/python3.7 $pyenv_path/pyenv/bin/python
  241. $pyenv_path/pyenv/bin/python -m pip install --upgrade --force-reinstall pip
  242. $pyenv_path/pyenv/bin/pip install -U flask==2.2.0
  243. $pyenv_path/pyenv/bin/pip install flask_sock
  244. $pyenv_path/pyenv/bin/pip install cachelib
  245. $pyenv_path/pyenv/bin/pip install py7zr
  246. $pyenv_path/pyenv/bin/pip install backports.lzma
  247. $pyenv_path/pyenv/bin/pip install pandas
  248. $pyenv_path/pyenv/bin/pip install msgpack
  249. if [ ! -f $pyenv_path/pyenv/bin/python ];then
  250. rm -f $pyenv_file
  251. Red_Error "ERROR: Install python env fielded." "ERROR: 下载堡塔云监控主控端运行环境失败,请尝试重新安装!"
  252. fi
  253. $pyenv_path/pyenv/bin/python3.7 -V
  254. if [ $? -eq 0 ];then
  255. rm -f $pyenv_file
  256. ln -sf $pyenv_path/pyenv/bin/pip3.7 /usr/bin/btmpip
  257. ln -sf $pyenv_path/pyenv/bin/python3.7 /usr/bin/btmpython
  258. source $pyenv_path/pyenv/bin/activate
  259. return
  260. else
  261. rm -f $pyenv_file
  262. rm -rf $pyenv_path/pyenv
  263. fi
  264. fi
  265. fi
  266. cd /www
  267. python_src='/www/python_src.tar.xz'
  268. python_src_path="/www/Python-${py_version}"
  269. wget -O $python_src $download_Url/src/Python-${py_version}.tar.xz -t 5 -T 10
  270. tmp_size=$(du -b $python_src|awk '{print $1}')
  271. if [ $tmp_size -lt 10703460 ];then
  272. rm -f $python_src
  273. Red_Error "ERROR: Download python source code fielded." "ERROR: 下载堡塔云监控主控端运行环境失败,请尝试重新安装!"
  274. fi
  275. tar xvf $python_src
  276. rm -f $python_src
  277. cd $python_src_path
  278. ./configure --prefix=$pyenv_path/pyenv
  279. make -j$cpu_cpunt
  280. make install
  281. if [ ! -f $pyenv_path/pyenv/bin/python3.7 ];then
  282. rm -rf $python_src_path
  283. Red_Error "ERROR: Make python env fielded." "ERROR: 编译堡塔云监控主控端运行环境失败!"
  284. fi
  285. cd ~
  286. rm -rf $python_src_path
  287. wget -O $pyenv_path/pyenv/bin/activate $download_Url/install/pyenv/activate.panel -t 5 -T 10
  288. wget -O $pyenv_path/pyenv/pip.txt $download_Url/install/pyenv/pip-3.7.8.txt -t 5 -T 10
  289. ln -sf $pyenv_path/pyenv/bin/pip3.7 $pyenv_path/pyenv/bin/pip
  290. ln -sf $pyenv_path/pyenv/bin/python3.7 $pyenv_path/pyenv/bin/python
  291. ln -sf $pyenv_path/pyenv/bin/pip3.7 /usr/bin/btmpip
  292. ln -sf $pyenv_path/pyenv/bin/python3.7 /usr/bin/btmpython
  293. chmod -R 700 $pyenv_path/pyenv/bin
  294. $pyenv_path/pyenv/bin/pip install -U pip
  295. $pyenv_path/pyenv/bin/pip install -U setuptools
  296. $pyenv_path/pyenv/bin/pip install -U wheel==0.34.2
  297. $pyenv_path/pyenv/bin/pip install -r $pyenv_path/pyenv/pip.txt
  298. $pyenv_path/pyenv/bin/pip install -U flask==2.2.0
  299. $pyenv_path/pyenv/bin/pip install flask_sock
  300. $pyenv_path/pyenv/bin/pip install cachelib
  301. $pyenv_path/pyenv/bin/pip install py7zr
  302. $pyenv_path/pyenv/bin/pip install backports.lzma
  303. $pyenv_path/pyenv/bin/pip install pandas
  304. $pyenv_path/pyenv/bin/pip install msgpack
  305. source $pyenv_path/pyenv/bin/activate
  306. is_gevent=$($python_bin -m gevent 2>&1|grep -oE package)
  307. is_psutil=$($python_bin -m psutil 2>&1|grep -oE package)
  308. if [ "${is_gevent}" != "${is_psutil}" ];then
  309. Red_Error "ERROR: psutil/gevent install failed!"
  310. fi
  311. }
  312. Install_Monitor(){
  313. ulimit -n 1000001
  314. tee -a /etc/security/limits.conf << EOF
  315. * hard nofile 1000001
  316. * soft nofile 1000001
  317. root hard nofile 1000001
  318. root soft nofile 1000001
  319. EOF
  320. sysctl -p
  321. panelPort="806"
  322. if [ ! -d "/etc/init.d" ];then
  323. mkdir -p /etc/init.d
  324. fi
  325. if [ -f "/etc/init.d/btm" ]; then
  326. /etc/init.d/btm stop
  327. sleep 1
  328. fi
  329. if [ -f "/www/server/bt-monitor/sqlite-server.sh" ]; then
  330. chmod +x /www/server/bt-monitor/sqlite-server.sh
  331. /www/server/bt-monitor/sqlite-server.sh stop
  332. sleep 1
  333. fi
  334. version="2.1.7"
  335. file_name="bt-monitor"
  336. agent_src="bt-monitor.zip"
  337. cd ~
  338. version=`curl -sf ${Btapi_Url}/bt_monitor/latest_version |awk -F '\"version\"' '{print $2}'|awk -F ':' '{print $2}'|awk -F '"' '{print $2}'`
  339. if [ -z $version ]; then
  340. version="2.0.6"
  341. fi
  342. if [ "$re_install" == "1" ]; then
  343. new_dir="/www/server/new_btmonitor"
  344. if [ ! -d "$new_dir" ];then
  345. mkdir -p $new_dir
  346. fi
  347. wget -O $agent_src ${Btapi_Url}/install/src/$file_name-$version.zip -t 5 -T 10
  348. unzip -o $agent_src -d $new_dir/ > /dev/null
  349. if [ ! -f $new_dir/BT-MONITOR ];then
  350. ls -lh $agent_src
  351. Red_Error "ERROR: Failed to download, please try install again!" "ERROR: 下载堡塔云监控主控端失败,请尝试重新安装!"
  352. fi
  353. rm -rf $new_dir/config
  354. rm -rf $new_dir/data
  355. rm -rf $new_dir/ssl
  356. \cp -r $new_dir/* $monitor_path/
  357. rm -rf $new_dir
  358. else
  359. wget -O $agent_src ${Btapi_Url}/install/src/$file_name-$version.zip -t 5 -T 10
  360. if [ ! -d "$monitor_path" ]; then
  361. mkdir -p $monitor_path
  362. fi
  363. unzip -o $agent_src -d $monitor_path/ > /dev/null
  364. if [ ! -f $run_bin ];then
  365. ls -lh $agent_src
  366. Red_Error "ERROR: Failed to download, please try install again!" "ERROR: 下载堡塔云监控主控端失败,请尝试重新安装!"
  367. fi
  368. fi
  369. rm -rf $agent_src
  370. chmod +x $monitor_path/BT-MONITOR
  371. chmod +x $monitor_path/tools.py
  372. wget -O /etc/init.d/btm ${download_Url}/init/btmonitor.init -t 5 -T 10
  373. # \cp -r $monitor_path/init.sh /etc/init.d/btm
  374. chmod +x /etc/init.d/btm
  375. ln -sf /etc/init.d/btm /usr/bin/btm
  376. if [ ! -f $monitor_path/data/user.json ]; then
  377. echo "{\"uid\":1,\"username\":\"Administrator\",\"ip\":\"127.0.0.1\",\"server_id\":\"1\",\"access_key\":\"test\",\"secret_key\":\"123456\"}" > $monitor_path/data/user.json
  378. fi
  379. if [ -f $monitor_path/core/include/c_loader/PluginLoader.so ]; then
  380. rm -f $monitor_path/core/include/c_loader/PluginLoader.so
  381. fi
  382. }
  383. Start_Monitor(){
  384. /etc/init.d/btm start
  385. if [ "$?" != "0" ]; then
  386. #echo "堡塔云监控主控端启动失败!"
  387. tail $monitor_path/logs/error.log
  388. Red_Error "堡塔云监控主控端启动失败!"
  389. fi
  390. echo "正在初始化云监控主控端..."
  391. if [ "$re_install" == "1" ] || [ "$re_install" == "2" ]; then
  392. user_pass=`$setup_path/server/bt-monitor/tools.py reset_pwd`
  393. password=`echo $user_pass |awk '{print $3}'`
  394. else
  395. user_pass=`$monitor_path/tools.py create_admin`
  396. password=`echo $user_pass |awk -F " " '{print $5}'`
  397. for ((i=1; i<=5; i++));do
  398. if [ -z "$password" ]; then
  399. sleep 7
  400. user_pass=`$monitor_path/tools.py create_admin`
  401. password=`echo $user_pass |awk -F " " '{print $5}'`
  402. else
  403. i=5
  404. fi
  405. done
  406. fi
  407. if [[ "$password" == "" ]];then
  408. Red_Error "ERROR: 初始化云监控主控端失败,请尝试重新安装!"
  409. fi
  410. c_path=$(cat /www/server/bt-monitor/config/config.json |awk -F '\"admin_path\"' '{print $2}'|awk -F ":" '{print $2}'|awk -F '"' '{print $2}')
  411. adminpath=$(echo $c_path|awk -F ',' '{print $1}')
  412. if [ -d "/usr/bin/btmonitoragent" ];then
  413. rm -rf /usr/bin/btmonitoragent
  414. fi
  415. date_f=`date '+%Y%m%d_%H%M%S'`
  416. md5_pl=`echo $date_f | md5sum | head -c 32`
  417. token_pl=`cat $monitor_path/config/token.pl 2>&1`
  418. if [ "$token_pl" == ' ' ] || [ ! -f $monitor_path/config/token.pl ]; then
  419. echo "$md5_pl" > $monitor_path/config/token.pl
  420. fi
  421. echo "正在给本机安装云监控被控端,请等待..."
  422. sleep 15
  423. curl -sSO ${download_Url}/install/btmonitoragent.sh && bash btmonitoragent.sh https://127.0.0.1:806 $md5_pl
  424. target_dir="/usr/local/btmonitoragent"
  425. if [ ! -f "$target_dir/BT-MonitorAgent" ];then
  426. tail -n 10 ${monitor_path}/logs/error.log
  427. echo ""
  428. ps aux|grep -v grep|grep ${monitor_path}
  429. netstat -tulnp|grep ${panelPort}
  430. /etc/init.d/btm restart
  431. if [ "$?" -eq 0 ]; then
  432. echo -e "\033[31m安装云监控被控端失败,正在尝试重新安装!\033[0m"
  433. sleep 15
  434. curl -sSO ${download_Url}/install/btmonitoragent.sh && bash btmonitoragent.sh https://127.0.0.1:806 $md5_pl
  435. if [ ! -f "$target_dir/BT-MonitorAgent" ];then
  436. Red_Error "ERROR: 安装云监控被控端失败,请尝试重新安装!"
  437. fi
  438. else
  439. Red_Error "ERROR: 安装云监控被控端失败,请尝试重新安装!"
  440. fi
  441. fi
  442. /etc/init.d/btm restart > /dev/null 2>&1
  443. }
  444. Set_Firewall(){
  445. sshPort=$(cat /etc/ssh/sshd_config | grep 'Port '|awk '{print $2}')
  446. if [ "${PM}" = "apt-get" ]; then
  447. apt-get install -y ufw
  448. if [ -f "/usr/sbin/ufw" ];then
  449. ufw allow 22/tcp
  450. ufw allow ${panelPort}/tcp
  451. ufw allow ${sshPort}/tcp
  452. ufw_status=`ufw status`
  453. echo y|ufw enable
  454. ufw default deny
  455. ufw reload
  456. fi
  457. else
  458. if [ -f "/etc/init.d/iptables" ];then
  459. iptables -I INPUT -p tcp -m state --state NEW -m tcp --dport 22 -j ACCEPT
  460. iptables -I INPUT -p tcp -m state --state NEW -m tcp --dport ${panelPort} -j ACCEPT
  461. iptables -I INPUT -p tcp -m state --state NEW -m tcp --dport ${sshPort} -j ACCEPT
  462. iptables -A INPUT -p icmp --icmp-type any -j ACCEPT
  463. iptables -A INPUT -s localhost -d localhost -j ACCEPT
  464. iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
  465. iptables -P INPUT DROP
  466. service iptables save
  467. sed -i "s#IPTABLES_MODULES=\"\"#IPTABLES_MODULES=\"ip_conntrack_netbios_ns ip_conntrack_ftp ip_nat_ftp\"#" /etc/sysconfig/iptables-config
  468. iptables_status=$(service iptables status | grep 'not running')
  469. if [ "${iptables_status}" == '' ];then
  470. service iptables restart
  471. fi
  472. else
  473. AliyunCheck=$(cat /etc/redhat-release|grep "Aliyun Linux")
  474. [ "${AliyunCheck}" ] && return
  475. yum install firewalld -y
  476. [ "${Centos8Check}" ] && yum reinstall python3-six -y
  477. systemctl enable firewalld
  478. systemctl start firewalld
  479. firewall-cmd --set-default-zone=public > /dev/null 2>&1
  480. firewall-cmd --permanent --zone=public --add-port=22/tcp > /dev/null 2>&1
  481. firewall-cmd --permanent --zone=public --add-port=${panelPort}/tcp > /dev/null 2>&1
  482. firewall-cmd --permanent --zone=public --add-port=${sshPort}/tcp > /dev/null 2>&1
  483. firewall-cmd --reload
  484. fi
  485. fi
  486. }
  487. Service_Add(){
  488. if [ $Command_Exists systemctl ]; then
  489. wget -O /usr/lib/systemd/system/btm.service ${download_Url}/init/systemd/btmonitor.service -t 5 -T 10
  490. systemctl daemon-reload
  491. systemctl enable btm
  492. else
  493. if [ "${PM}" == "yum" ] || [ "${PM}" == "dnf" ]; then
  494. chkconfig --add btm
  495. chkconfig --level 2345 btm on
  496. elif [ "${PM}" == "apt-get" ]; then
  497. update-rc.d btm defaults
  498. fi
  499. fi
  500. }
  501. Service_Del(){
  502. if [ $Command_Exists systemctl ]; then
  503. rm -rf /usr/lib/systemd/system/btm.service
  504. systemctl disable btm
  505. else
  506. if [ "${PM}" == "yum" ] || [ "${PM}" == "dnf" ]; then
  507. chkconfig --del btm
  508. chkconfig --level 2345 btm off
  509. elif [ "${PM}" == "apt-get" ]; then
  510. update-rc.d btm remove
  511. fi
  512. fi
  513. }
  514. Get_Ip_Address(){
  515. getIpAddress=""
  516. getIpAddress=$(curl -sS --connect-timeout 10 -m 60 https://www.bt.cn/Api/getIpAddress)
  517. if [ -z "${getIpAddress}" ] || [ "${getIpAddress}" = "0.0.0.0" ]; then
  518. isHosts=$(cat /etc/hosts|grep 'www.bt.cn')
  519. if [ -z "${isHosts}" ];then
  520. echo "" >> /etc/hosts
  521. echo "116.213.43.206 www.bt.cn" >> /etc/hosts
  522. getIpAddress=$(curl -sS --connect-timeout 10 -m 60 https://www.bt.cn/Api/getIpAddress)
  523. if [ -z "${getIpAddress}" ];then
  524. sed -i "/bt.cn/d" /etc/hosts
  525. fi
  526. fi
  527. fi
  528. ipv4Check=$($python_bin -c "import re; print(re.match('^(?:[0-9]{1,3}\.){3}[0-9]{1,3}$','${getIpAddress}'))")
  529. if [ "${ipv4Check}" == "None" ];then
  530. ipv6Address=$(echo ${getIpAddress}|tr -d "[]")
  531. ipv6Check=$($python_bin -c "import re; print(re.match('^([0-9a-fA-F]{0,4}:){1,7}[0-9a-fA-F]{0,4}$','${ipv6Address}'))")
  532. if [ "${ipv6Check}" == "None" ]; then
  533. getIpAddress="SERVER_IP"
  534. else
  535. echo "True" > ${setup_path}/server/bt-monitor/data/ipv6.pl
  536. sleep 1
  537. /etc/init.d/btm restart
  538. fi
  539. fi
  540. if [ "${getIpAddress}" != "SERVER_IP" ];then
  541. echo "${getIpAddress}" > ${setup_path}/server/bt-monitor/data/iplist.txt
  542. fi
  543. LOCAL_IP=$(ip addr | grep -E -o '[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}' | grep -E -v "^127\.|^255\.|^0\." | head -n 1)
  544. }
  545. System_Check(){
  546. if [ -f "$monitor_path/BT-MONITOR" ] || [ -f "$monitor_path/tools.py" ] || [ -f "/etc/init.d/btm" ];then
  547. Install_Check
  548. elif [ -d "$old_dir" ];then
  549. Rev_Install_Check
  550. fi
  551. }
  552. Install_Check(){
  553. echo -e "----------------------------------------------------"
  554. echo -e "检测到已存在堡塔云监控系统,请按照选项选择安装方式!"
  555. echo -e "1) 覆盖安装:保存原有监控配置及数据并安装堡塔云监控"
  556. echo -e "\033[33m2) 全新安装:清空原有监控配置及数据并安装堡塔云监控\033[0m"
  557. echo -e "----------------------------------------------------"
  558. read -p "请输入对应选项[1|2]进行安装或输入任意内容退出安装: " yes;
  559. if [ "$yes" == "1" ]; then
  560. re_install="1"
  561. echo "即将卸载并重装本机的堡塔云监控被控端..."
  562. Uninstall_agent
  563. elif [ "$yes" == "2" ]; then
  564. Backup_Monitor
  565. echo "即将卸载并重装本机的堡塔云监控被控端..."
  566. Uninstall_agent
  567. else
  568. echo -e "------------"
  569. echo "取消安装"
  570. exit;
  571. fi
  572. }
  573. Rev_Install_Check(){
  574. echo -e "----------------------------------------------------"
  575. echo -e "\033[33m检测到上一次卸载云监控时保留的旧数据,请按照选项选择安装方式!\033[0m"
  576. echo -e "1) 还原以前的备份并安装堡塔云监控系统!"
  577. echo -e "2) 不使用原有备份,全新安装堡塔云监控系统!"
  578. echo -e "----------------------------------------------------"
  579. read -p "请输入对应选项[1|2]进行安装或输入任意内容退出安装: " yes;
  580. if [ "$yes" == "1" ]; then
  581. re_install="2"
  582. echo "开始安装堡塔云监控系统并还原数据..."
  583. elif [ "$yes" == "2" ]; then
  584. echo "开始全新安装堡塔云监控系统..."
  585. else
  586. echo -e "------------"
  587. echo "取消安装"
  588. exit;
  589. fi
  590. }
  591. Backup_Monitor(){
  592. if [ -f "/etc/init.d/btm" ]; then
  593. /etc/init.d/btm stop
  594. sleep 1
  595. fi
  596. if [ ! -d "${old_dir}" ];then
  597. mkdir -p ${old_dir}
  598. else
  599. mv ${old_dir} ${old_dir}_$(date +%Y_%m_%d_%H_%M_%S)
  600. mkdir -p ${old_dir}
  601. fi
  602. mv ${monitor_path}/data ${old_dir}/data
  603. mv ${monitor_path}/config ${old_dir}/config
  604. mv ${monitor_path}/ssl ${old_dir}/ssl
  605. }
  606. Reinstall_Monitor(){
  607. rm -rf $monitor_path/data
  608. rm -rf $monitor_path/config
  609. rm -rf $monitor_path/ssl
  610. mv $old_dir/data $monitor_path/data
  611. mv $old_dir/config $monitor_path/config
  612. mv $old_dir/ssl $monitor_path/ssl
  613. rm -rf $old_dir
  614. }
  615. Get_Pack_Manager(){
  616. if [ -f "/usr/bin/yum" ] && [ -d "/etc/yum.repos.d" ]; then
  617. PM="yum"
  618. elif [ -f "/usr/bin/apt-get" ] && [ -f "/usr/bin/dpkg" ]; then
  619. PM="apt-get"
  620. fi
  621. }
  622. Install_RPM_Pack(){
  623. yumPacks="wget curl unzip gcc gcc-c++ make libcurl-devel openssl-devel xz-devel python-backports-lzma xz crontabs zlib zlib-devel sqlite-devel libffi-devel bzip2-devel lsof net-tools"
  624. yum install -y ${yumPacks}
  625. for yumPack in ${yumPacks}
  626. do
  627. rpmPack=$(rpm -q ${yumPack})
  628. packCheck=$(echo ${rpmPack}|grep not)
  629. if [ "${packCheck}" ]; then
  630. yum install ${yumPack} -y
  631. fi
  632. done
  633. }
  634. Install_Deb_Pack(){
  635. debPacks="wget curl unzip gcc g++ make cron libcurl4-openssl-dev libssl-dev liblzma-dev xz-utils libffi-dev libbz2-dev libsqlite3-dev libreadline-dev libgdbm-dev python3-bsddb3 tk-dev ncurses-dev uuid-dev zlib1g zlib1g-dev lsof net-tools";
  636. apt-get update -y
  637. apt-get install -y $debPacks --force-yes
  638. for debPack in ${debPacks}
  639. do
  640. packCheck=$(dpkg -l ${debPack})
  641. if [ "$?" -ne "0" ] ;then
  642. apt-get install -y $debPack
  643. fi
  644. done
  645. }
  646. Check_Sys_Write(){
  647. echo "正在检测系统关键目录是否可写"
  648. if [ ! -d "/etc/init.d" ];then
  649. mkdir -p /etc/init.d
  650. fi
  651. if [ -f /usr/bin/which ];then
  652. Get_Pack_Manager
  653. if [ "$PM" == "yum" ]; then
  654. read_dir="/usr/lib/systemd/system/ /etc/init.d/ /var/spool/cron/"
  655. else
  656. read_dir="/usr/lib/systemd/system/ /etc/init.d/ /var/spool/cron/crontabs/"
  657. fi
  658. for dir in ${read_dir[@]}
  659. do
  660. if [[ -d "$dir" ]]; then
  661. touch $dir/btm_install_test_111.pl
  662. state=$(echo $?)
  663. if [[ "$state" != "0" ]];then
  664. echo -e "\033[31m错误:检测到系统关键目录不可写! $read_dir \033[0m"
  665. echo "1、如果安装了[宝塔系统加固],请先临时关闭"
  666. echo "2、如果安装了云锁,请临时关闭[系统加固]功能"
  667. echo "3、如果安装了安全狗,请临时关闭[系统防护]功能"
  668. echo "4、如果使用了其它安全软件,请先卸载 "
  669. echo -e "5、如果使用了禁止写入命令,请执行命令取消禁止写入:\n chattr -iaR $read_dir "
  670. echo ""
  671. echo -e "\033[31m解决以上问题后,请尝试重新安装! \033[0m"
  672. echo -e "如果无法解决请截图以上报错信息发帖至论坛www.bt.cn/bbs求助"
  673. exit 1
  674. else
  675. rm -f $dir/btm_install_test_111.pl
  676. fi
  677. fi
  678. done
  679. fi
  680. }
  681. Check_Sys_Packs(){
  682. echo "正在检查系统中是否存在必备的依赖包"
  683. Packs="wget curl unzip gcc make"
  684. for pack in ${Packs[@]}
  685. do
  686. check_pack=$(which $pack)
  687. #echo $check_pack
  688. if [[ "$check_pack" == "" ]]; then
  689. echo -e "\033[31mERROR: $pack 命令不存在,尝试以下解决方法:\033[0m"
  690. if [ "$PM" == "yum" ]; then
  691. echo 1、使用命令重新安装依赖包:yum reinstall -y ${Packs}
  692. else
  693. echo 1、使用命令重新安装依赖包:apt-get reinstall -y ${Packs}
  694. fi
  695. echo -e "2、检查系统源是否可用?尝试更换可用的源参考教程:\n https://www.bt.cn/bbs/thread-58005-1-1.html "
  696. echo ""
  697. echo -e "\033[31m解决以上问题后,请尝试重新安装! \033[0m"
  698. echo -e "如果无法解决请截图以上报错信息发帖至论坛www.bt.cn/bbs求助"
  699. exit 1
  700. fi
  701. done
  702. }
  703. Install_Main(){
  704. startTime=`date +%s`
  705. Check_Sys_Write
  706. System_Check
  707. Get_Pack_Manager
  708. get_node_url
  709. if [ "$PM" == "yum" ]; then
  710. Install_RPM_Pack
  711. else
  712. Install_Deb_Pack
  713. fi
  714. Check_Sys_Packs
  715. Install_Python_Lib
  716. Install_Monitor
  717. Set_Firewall
  718. Get_Ip_Address
  719. Service_Add
  720. if [ "$re_install" == "2" ]; then
  721. Reinstall_Monitor
  722. fi
  723. Start_Monitor
  724. }
  725. Uninstall_Monitor(){
  726. pkill BT-MONITOR
  727. /etc/init.d/btm stop
  728. if [ -f "/www/server/bt-monitor/sqlite-server.sh" ]; then
  729. chmod +x /www/server/bt-monitor/sqlite-server.sh
  730. /www/server/bt-monitor/sqlite-server.sh stop
  731. sleep 1
  732. fi
  733. Service_Del
  734. rm -rf $monitor_path
  735. rm -rf /usr/bin/btm
  736. rm -rf /etc/init.d/btm
  737. echo -e "堡塔云监控主控端卸载成功!"
  738. }
  739. Uninstall_agent(){
  740. get_node_url
  741. if [ -f "/tmp/btmonitoragent.sh" ];then
  742. rm -rf /tmp/btmonitoragent.sh
  743. fi
  744. curl -o /tmp/btmonitoragent.sh -sSO ${download_Url}/install/btmonitoragent.sh && bash /tmp/btmonitoragent.sh uninstall
  745. }
  746. action="${1}"
  747. if [ "$action" == "uninstall" ];then
  748. echo -e "----------------------------------------------------"
  749. echo -e "\033[33m检测到您正在卸载堡塔云监控系统,请按照选项选择卸载方式!\033[0m"
  750. echo -e "1) 备份数据后卸载:保存原有监控配置及数据并卸载堡塔云监控系统"
  751. echo -e "2) 完全卸载:清空原有监控配置及数据并卸载堡塔云监控系统"
  752. echo -e "----------------------------------------------------"
  753. read -p "请输入对应选项[1|2]进行卸载或输入任意内容退出卸载: " yes;
  754. if [ "$yes" == "1" ]; then
  755. Backup_Monitor
  756. echo -e "----------------------------------------------------"
  757. echo -e "\033[33m已备份原有监控数据至: ${old_dir}\033[0m"
  758. elif [ "$yes" == "2" ]; then
  759. echo "正在清空堡塔云监控系统数据..."
  760. else
  761. echo -e "------------"
  762. echo "取消卸载"
  763. exit;
  764. fi
  765. Uninstall_agent
  766. Uninstall_Monitor
  767. exit 0
  768. else
  769. echo "
  770. +----------------------------------------------------------------------
  771. | Bt-Monitor FOR CentOS/Ubuntu/Debian
  772. +----------------------------------------------------------------------
  773. | Copyright © 2015-2099 BT-SOFT(https://www.bt.cn) All rights reserved.
  774. +----------------------------------------------------------------------
  775. | The Monitor URL will be https://SERVER_IP:806 when installed.
  776. +----------------------------------------------------------------------
  777. "
  778. while [ "$go" != 'y' ] && [ "$go" != 'n' ]
  779. do
  780. read -p "Do you want to install Bt-Monitor to the $setup_path directory now?(y/n): " go;
  781. done
  782. if [ "$go" == 'n' ];then
  783. exit;
  784. fi
  785. Install_Main
  786. #curl -o /dev/null -fsSL --connect-time 10 "https://api.bt.cn/bt_monitor/setup_count?cloud_type=1&token=$md5_pl&src_code=$1"
  787. #curl -o /dev/null -fsSL --connect-time 10 "https://api.bt.cn/bt_monitor/setup_count?cloud_type=1&token=$md5_pl&src_code=$1&status=1"
  788. fi
  789. echo -e "=================================================================="
  790. echo -e "\033[32m堡塔云监控主控端安装完成! Installed successfully!\033[0m"
  791. echo -e "=================================================================="
  792. echo "外网访问地址: https://${getIpAddress}:${panelPort}${adminpath}"
  793. echo "内网访问地址: https://${LOCAL_IP}:${panelPort}${adminpath}"
  794. echo -e "username: admin"
  795. echo -e "password: $password"
  796. echo -e "\033[33mIf you cannot access the Monitor,\033[0m"
  797. echo -e "\033[33mrelease the following Monitor port [${panelPort}] in the security group\033[0m"
  798. echo -e "\033[33m若无法访问堡塔云监控主控端,请检查防火墙/安全组是否有放行[${panelPort}]端口\033[0m"
  799. echo -e "=================================================================="
  800. endTime=`date +%s`
  801. ((outTime=($endTime-$startTime)/60))
  802. echo -e "Time consumed:\033[32m $outTime \033[0mMinute!"