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.

889 lines
29 KiB

1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
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. $pyenv_path/pyenv/bin/pip install simple-websocket==0.10.0
  197. fi
  198. source $pyenv_path/pyenv/bin/activate
  199. chmod -R 700 $pyenv_path/pyenv/bin
  200. return
  201. else
  202. rm -rf $pyenv_path/pyenv
  203. fi
  204. fi
  205. py_version="3.7.9"
  206. if [ ! -d "$pyenv_path" ]; then
  207. mkdir -p $pyenv_path
  208. fi
  209. echo "True" > /www/disk.pl
  210. if [ ! -w /www/disk.pl ];then
  211. Red_Error "ERROR: Install python env fielded." "ERROR: /www目录无法写入,请检查目录/用户/磁盘权限!"
  212. fi
  213. os_type='el'
  214. os_version='7'
  215. is_export_openssl=0
  216. Get_Versions
  217. echo "OS: $os_type - $os_version"
  218. is_aarch64=$(uname -a|grep aarch64)
  219. if [ "$is_aarch64" != "" ];then
  220. is64bit="aarch64"
  221. fi
  222. if [ -f "/www/server/bt-monitor/pymake.pl" ];then
  223. os_version=""
  224. rm -f /www/server/bt-monitor/pymake.pl
  225. fi
  226. if [[ $os_type =~ "debian" ]] || [[ $os_type =~ "ubuntu" ]]; then
  227. isbtm="-btm"
  228. fi
  229. if [ "${os_version}" != "" ];then
  230. pyenv_file="/www/pyenv.tar.gz"
  231. wget -O $pyenv_file $download_Url/install/pyenv/pyenv-${os_type}${os_version}-x${is64bit}${isbtm}.tar.gz -t 5 -T 10
  232. tmp_size=$(du -b $pyenv_file|awk '{print $1}')
  233. if [ $tmp_size -lt 703460 ];then
  234. rm -f $pyenv_file
  235. echo "ERROR: Download python env fielded."
  236. else
  237. echo "Install python env..."
  238. tar zxvf $pyenv_file -C $pyenv_path/ > /dev/null
  239. chmod -R 700 $pyenv_path/pyenv/bin
  240. rm -rf $pyenv_path/pyenv/bin/python
  241. ln -sf $pyenv_path/pyenv/bin/python3.7 $pyenv_path/pyenv/bin/python
  242. $pyenv_path/pyenv/bin/python -m pip install --upgrade --force-reinstall pip
  243. $pyenv_path/pyenv/bin/pip install -U flask==2.2.0
  244. $pyenv_path/pyenv/bin/pip install flask_sock
  245. $pyenv_path/pyenv/bin/pip install cachelib
  246. $pyenv_path/pyenv/bin/pip install py7zr
  247. $pyenv_path/pyenv/bin/pip install backports.lzma
  248. $pyenv_path/pyenv/bin/pip install pandas
  249. $pyenv_path/pyenv/bin/pip install msgpack
  250. $pyenv_path/pyenv/bin/pip install simple-websocket==0.10.0
  251. if [ ! -f $pyenv_path/pyenv/bin/python ];then
  252. rm -f $pyenv_file
  253. Red_Error "ERROR: Install python env fielded." "ERROR: 下载堡塔云监控主控端运行环境失败,请尝试重新安装!"
  254. fi
  255. $pyenv_path/pyenv/bin/python3.7 -V
  256. if [ $? -eq 0 ];then
  257. rm -f $pyenv_file
  258. ln -sf $pyenv_path/pyenv/bin/pip3.7 /usr/bin/btmpip
  259. ln -sf $pyenv_path/pyenv/bin/python3.7 /usr/bin/btmpython
  260. source $pyenv_path/pyenv/bin/activate
  261. return
  262. else
  263. rm -f $pyenv_file
  264. rm -rf $pyenv_path/pyenv
  265. fi
  266. fi
  267. fi
  268. cd /www
  269. python_src='/www/python_src.tar.xz'
  270. python_src_path="/www/Python-${py_version}"
  271. wget -O $python_src $download_Url/src/Python-${py_version}.tar.xz -t 5 -T 10
  272. tmp_size=$(du -b $python_src|awk '{print $1}')
  273. if [ $tmp_size -lt 10703460 ];then
  274. rm -f $python_src
  275. Red_Error "ERROR: Download python source code fielded." "ERROR: 下载堡塔云监控主控端运行环境失败,请尝试重新安装!"
  276. fi
  277. tar xvf $python_src
  278. rm -f $python_src
  279. cd $python_src_path
  280. ./configure --prefix=$pyenv_path/pyenv
  281. make -j$cpu_cpunt
  282. make install
  283. if [ ! -f $pyenv_path/pyenv/bin/python3.7 ];then
  284. rm -rf $python_src_path
  285. Red_Error "ERROR: Make python env fielded." "ERROR: 编译堡塔云监控主控端运行环境失败!"
  286. fi
  287. cd ~
  288. rm -rf $python_src_path
  289. wget -O $pyenv_path/pyenv/bin/activate $download_Url/install/pyenv/activate.panel -t 5 -T 10
  290. wget -O $pyenv_path/pyenv/pip.txt $download_Url/install/pyenv/pip-3.7.8.txt -t 5 -T 10
  291. ln -sf $pyenv_path/pyenv/bin/pip3.7 $pyenv_path/pyenv/bin/pip
  292. ln -sf $pyenv_path/pyenv/bin/python3.7 $pyenv_path/pyenv/bin/python
  293. ln -sf $pyenv_path/pyenv/bin/pip3.7 /usr/bin/btmpip
  294. ln -sf $pyenv_path/pyenv/bin/python3.7 /usr/bin/btmpython
  295. chmod -R 700 $pyenv_path/pyenv/bin
  296. $pyenv_path/pyenv/bin/pip install -U pip
  297. $pyenv_path/pyenv/bin/pip install -U setuptools
  298. $pyenv_path/pyenv/bin/pip install -U wheel==0.34.2
  299. $pyenv_path/pyenv/bin/pip install -r $pyenv_path/pyenv/pip.txt
  300. $pyenv_path/pyenv/bin/pip install -U flask==2.2.0
  301. $pyenv_path/pyenv/bin/pip install flask_sock
  302. $pyenv_path/pyenv/bin/pip install cachelib
  303. $pyenv_path/pyenv/bin/pip install py7zr
  304. $pyenv_path/pyenv/bin/pip install backports.lzma
  305. $pyenv_path/pyenv/bin/pip install pandas
  306. $pyenv_path/pyenv/bin/pip install msgpack
  307. $pyenv_path/pyenv/bin/pip install simple-websocket==0.10.0
  308. source $pyenv_path/pyenv/bin/activate
  309. is_gevent=$($python_bin -m gevent 2>&1|grep -oE package)
  310. is_psutil=$($python_bin -m psutil 2>&1|grep -oE package)
  311. if [ "${is_gevent}" != "${is_psutil}" ];then
  312. Red_Error "ERROR: psutil/gevent install failed!"
  313. fi
  314. }
  315. Install_Monitor(){
  316. ulimit -n 1000001
  317. tee -a /etc/security/limits.conf << EOF
  318. * hard nofile 1000001
  319. * soft nofile 1000001
  320. root hard nofile 1000001
  321. root soft nofile 1000001
  322. EOF
  323. sysctl -p
  324. panelPort="806"
  325. if [ ! -d "/etc/init.d" ];then
  326. mkdir -p /etc/init.d
  327. fi
  328. if [ -f "/etc/init.d/btm" ]; then
  329. /etc/init.d/btm stop
  330. sleep 1
  331. fi
  332. if [ -f "/www/server/bt-monitor/sqlite-server.sh" ]; then
  333. chmod +x /www/server/bt-monitor/sqlite-server.sh
  334. /www/server/bt-monitor/sqlite-server.sh stop
  335. sleep 1
  336. fi
  337. version="2.1.7"
  338. file_name="bt-monitor"
  339. agent_src="bt-monitor.zip"
  340. cd ~
  341. version=`curl -sf ${Btapi_Url}/bt_monitor/latest_version |awk -F '\"version\"' '{print $2}'|awk -F ':' '{print $2}'|awk -F '"' '{print $2}'`
  342. if [ -z $version ]; then
  343. version="2.0.6"
  344. fi
  345. if [ "$re_install" == "1" ]; then
  346. new_dir="/www/server/new_btmonitor"
  347. if [ ! -d "$new_dir" ];then
  348. mkdir -p $new_dir
  349. fi
  350. wget -O $agent_src ${Btapi_Url}/install/src/$file_name-$version.zip -t 5 -T 10
  351. unzip -o $agent_src -d $new_dir/ > /dev/null
  352. if [ ! -f $new_dir/BT-MONITOR ];then
  353. ls -lh $agent_src
  354. Red_Error "ERROR: Failed to download, please try install again!" "ERROR: 下载堡塔云监控主控端失败,请尝试重新安装!"
  355. fi
  356. rm -rf $new_dir/config
  357. rm -rf $new_dir/data
  358. rm -rf $new_dir/ssl
  359. \cp -r $new_dir/* $monitor_path/
  360. rm -rf $new_dir
  361. else
  362. wget -O $agent_src ${Btapi_Url}/install/src/$file_name-$version.zip -t 5 -T 10
  363. if [ ! -d "$monitor_path" ]; then
  364. mkdir -p $monitor_path
  365. fi
  366. unzip -o $agent_src -d $monitor_path/ > /dev/null
  367. if [ ! -f $run_bin ];then
  368. ls -lh $agent_src
  369. Red_Error "ERROR: Failed to download, please try install again!" "ERROR: 下载堡塔云监控主控端失败,请尝试重新安装!"
  370. fi
  371. fi
  372. rm -rf $agent_src
  373. chmod +x $monitor_path/BT-MONITOR
  374. chmod +x $monitor_path/tools.py
  375. wget -O /etc/init.d/btm ${download_Url}/init/btmonitor.init -t 5 -T 10
  376. tmp_size=$(du -b "/etc/init.d/btm"|awk '{print $1}')
  377. if [ ${tmp_size} == 0 ]; then
  378. \cp -r $monitor_path/init.sh /etc/init.d/btm
  379. fi
  380. if [ ! -f "/etc/init.d/btm" ];then
  381. \cp -r $monitor_path/init.sh /etc/init.d/btm
  382. fi
  383. chmod +x /etc/init.d/btm
  384. ln -sf /etc/init.d/btm /usr/bin/btm
  385. if [ ! -f $monitor_path/data/user.json ]; then
  386. echo "{\"uid\":1,\"username\":\"Administrator\",\"ip\":\"127.0.0.1\",\"server_id\":\"1\",\"access_key\":\"test\",\"secret_key\":\"123456\"}" > $monitor_path/data/user.json
  387. fi
  388. if [ -f $monitor_path/core/include/c_loader/PluginLoader.so ]; then
  389. rm -f $monitor_path/core/include/c_loader/PluginLoader.so
  390. fi
  391. }
  392. Start_Monitor(){
  393. /etc/init.d/btm start
  394. if [ "$?" != "0" ]; then
  395. #echo "堡塔云监控主控端启动失败!"
  396. tail $monitor_path/logs/error.log
  397. Red_Error "堡塔云监控主控端启动失败!"
  398. fi
  399. echo "正在初始化云监控主控端..."
  400. if [ "$re_install" == "1" ] || [ "$re_install" == "2" ]; then
  401. user_pass=`$setup_path/server/bt-monitor/tools.py reset_pwd`
  402. password=`echo $user_pass |awk '{print $3}'`
  403. else
  404. user_pass=`$monitor_path/tools.py create_admin`
  405. password=`echo $user_pass |awk -F " " '{print $5}'`
  406. for ((i=1; i<=5; i++));do
  407. if [ -z "$password" ]; then
  408. sleep 7
  409. user_pass=`$monitor_path/tools.py create_admin`
  410. password=`echo $user_pass |awk -F " " '{print $5}'`
  411. else
  412. i=5
  413. fi
  414. done
  415. fi
  416. if [[ "$password" == "" ]];then
  417. Red_Error "ERROR: 初始化云监控主控端失败,请尝试重新安装!"
  418. fi
  419. c_path=$(cat /www/server/bt-monitor/config/config.json |awk -F '\"admin_path\"' '{print $2}'|awk -F ":" '{print $2}'|awk -F '"' '{print $2}')
  420. adminpath=$(echo $c_path|awk -F ',' '{print $1}')
  421. if [ -d "/usr/bin/btmonitoragent" ];then
  422. rm -rf /usr/bin/btmonitoragent
  423. fi
  424. date_f=`date '+%Y%m%d_%H%M%S'`
  425. md5_pl=`echo $date_f | md5sum | head -c 32`
  426. token_pl=`cat $monitor_path/config/token.pl 2>&1`
  427. if [ "$token_pl" == ' ' ] || [ ! -f $monitor_path/config/token.pl ]; then
  428. echo "$md5_pl" > $monitor_path/config/token.pl
  429. fi
  430. echo "正在给本机安装云监控被控端,请等待..."
  431. sleep 15
  432. curl -sSO ${download_Url}/install/btmonitoragent.sh && bash btmonitoragent.sh https://127.0.0.1:806 $md5_pl
  433. target_dir="/usr/local/btmonitoragent"
  434. if [ ! -f "$target_dir/BT-MonitorAgent" ];then
  435. tail -n 10 ${monitor_path}/logs/error.log
  436. echo ""
  437. ps aux|grep -v grep|grep ${monitor_path}
  438. netstat -tulnp|grep ${panelPort}
  439. /etc/init.d/btm restart
  440. if [ "$?" -eq 0 ]; then
  441. echo -e "\033[31m安装云监控被控端失败,正在尝试重新安装!\033[0m"
  442. sleep 15
  443. curl -sSO ${download_Url}/install/btmonitoragent.sh && bash btmonitoragent.sh https://127.0.0.1:806 $md5_pl
  444. if [ ! -f "$target_dir/BT-MonitorAgent" ];then
  445. Red_Error "ERROR: 安装云监控被控端失败,请尝试重新安装!"
  446. fi
  447. else
  448. Red_Error "ERROR: 安装云监控被控端失败,请尝试重新安装!"
  449. fi
  450. fi
  451. /etc/init.d/btm restart > /dev/null 2>&1
  452. }
  453. Set_Firewall(){
  454. sshPort=$(cat /etc/ssh/sshd_config | grep 'Port '|awk '{print $2}')
  455. if [ "${PM}" = "apt-get" ]; then
  456. apt-get install -y ufw
  457. if [ -f "/usr/sbin/ufw" ];then
  458. ufw allow 22/tcp
  459. ufw allow ${panelPort}/tcp
  460. ufw allow ${sshPort}/tcp
  461. ufw_status=`ufw status`
  462. echo y|ufw enable
  463. ufw default deny
  464. ufw reload
  465. fi
  466. else
  467. if [ -f "/etc/init.d/iptables" ];then
  468. iptables -I INPUT -p tcp -m state --state NEW -m tcp --dport 22 -j ACCEPT
  469. iptables -I INPUT -p tcp -m state --state NEW -m tcp --dport ${panelPort} -j ACCEPT
  470. iptables -I INPUT -p tcp -m state --state NEW -m tcp --dport ${sshPort} -j ACCEPT
  471. iptables -A INPUT -p icmp --icmp-type any -j ACCEPT
  472. iptables -A INPUT -s localhost -d localhost -j ACCEPT
  473. iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
  474. iptables -P INPUT DROP
  475. service iptables save
  476. sed -i "s#IPTABLES_MODULES=\"\"#IPTABLES_MODULES=\"ip_conntrack_netbios_ns ip_conntrack_ftp ip_nat_ftp\"#" /etc/sysconfig/iptables-config
  477. iptables_status=$(service iptables status | grep 'not running')
  478. if [ "${iptables_status}" == '' ];then
  479. service iptables restart
  480. fi
  481. else
  482. AliyunCheck=$(cat /etc/redhat-release|grep "Aliyun Linux")
  483. [ "${AliyunCheck}" ] && return
  484. yum install firewalld -y
  485. [ "${Centos8Check}" ] && yum reinstall python3-six -y
  486. systemctl enable firewalld
  487. systemctl start firewalld
  488. firewall-cmd --set-default-zone=public > /dev/null 2>&1
  489. firewall-cmd --permanent --zone=public --add-port=22/tcp > /dev/null 2>&1
  490. firewall-cmd --permanent --zone=public --add-port=${panelPort}/tcp > /dev/null 2>&1
  491. firewall-cmd --permanent --zone=public --add-port=${sshPort}/tcp > /dev/null 2>&1
  492. firewall-cmd --reload
  493. fi
  494. fi
  495. }
  496. Service_Add(){
  497. if [ $Command_Exists systemctl ]; then
  498. wget -O /usr/lib/systemd/system/btm.service ${download_Url}/init/systemd/btmonitor.service -t 5 -T 10
  499. systemctl daemon-reload
  500. systemctl enable btm
  501. else
  502. if [ "${PM}" == "yum" ] || [ "${PM}" == "dnf" ]; then
  503. chkconfig --add btm
  504. chkconfig --level 2345 btm on
  505. elif [ "${PM}" == "apt-get" ]; then
  506. update-rc.d btm defaults
  507. fi
  508. fi
  509. }
  510. Service_Del(){
  511. if [ $Command_Exists systemctl ]; then
  512. rm -rf /usr/lib/systemd/system/btm.service
  513. systemctl disable btm
  514. else
  515. if [ "${PM}" == "yum" ] || [ "${PM}" == "dnf" ]; then
  516. chkconfig --del btm
  517. chkconfig --level 2345 btm off
  518. elif [ "${PM}" == "apt-get" ]; then
  519. update-rc.d btm remove
  520. fi
  521. fi
  522. }
  523. Get_Ip_Address(){
  524. getIpAddress=""
  525. getIpAddress=$(curl -sS --connect-timeout 10 -m 60 https://www.bt.cn/Api/getIpAddress)
  526. if [ -z "${getIpAddress}" ] || [ "${getIpAddress}" = "0.0.0.0" ]; then
  527. isHosts=$(cat /etc/hosts|grep 'www.bt.cn')
  528. if [ -z "${isHosts}" ];then
  529. echo "" >> /etc/hosts
  530. echo "116.213.43.206 www.bt.cn" >> /etc/hosts
  531. getIpAddress=$(curl -sS --connect-timeout 10 -m 60 https://www.bt.cn/Api/getIpAddress)
  532. if [ -z "${getIpAddress}" ];then
  533. sed -i "/bt.cn/d" /etc/hosts
  534. fi
  535. fi
  536. fi
  537. ipv4Check=$($python_bin -c "import re; print(re.match('^(?:[0-9]{1,3}\.){3}[0-9]{1,3}$','${getIpAddress}'))")
  538. if [ "${ipv4Check}" == "None" ];then
  539. ipv6Address=$(echo ${getIpAddress}|tr -d "[]")
  540. ipv6Check=$($python_bin -c "import re; print(re.match('^([0-9a-fA-F]{0,4}:){1,7}[0-9a-fA-F]{0,4}$','${ipv6Address}'))")
  541. if [ "${ipv6Check}" == "None" ]; then
  542. getIpAddress="SERVER_IP"
  543. else
  544. echo "True" > ${setup_path}/server/bt-monitor/data/ipv6.pl
  545. sleep 1
  546. /etc/init.d/btm restart
  547. fi
  548. fi
  549. if [ "${getIpAddress}" != "SERVER_IP" ];then
  550. echo "${getIpAddress}" > ${setup_path}/server/bt-monitor/data/iplist.txt
  551. fi
  552. 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)
  553. }
  554. System_Check(){
  555. if [ -f "$monitor_path/BT-MONITOR" ] || [ -f "$monitor_path/tools.py" ] || [ -f "/etc/init.d/btm" ];then
  556. Install_Check
  557. elif [ -d "$old_dir" ];then
  558. Rev_Install_Check
  559. fi
  560. }
  561. Install_Check(){
  562. echo -e "----------------------------------------------------"
  563. echo -e "检测到已存在堡塔云监控系统,请按照选项选择安装方式!"
  564. echo -e "1) 覆盖安装:保存原有监控配置及数据并安装堡塔云监控"
  565. echo -e "\033[33m2) 全新安装:清空原有监控配置及数据并安装堡塔云监控\033[0m"
  566. echo -e "----------------------------------------------------"
  567. read -p "请输入对应选项[1|2]进行安装或输入任意内容退出安装: " yes;
  568. if [ "$yes" == "1" ]; then
  569. re_install="1"
  570. echo "即将卸载并重装本机的堡塔云监控被控端..."
  571. Uninstall_agent
  572. elif [ "$yes" == "2" ]; then
  573. Backup_Monitor
  574. echo "即将卸载并重装本机的堡塔云监控被控端..."
  575. Uninstall_agent
  576. else
  577. echo -e "------------"
  578. echo "取消安装"
  579. exit;
  580. fi
  581. }
  582. Rev_Install_Check(){
  583. echo -e "----------------------------------------------------"
  584. echo -e "\033[33m检测到上一次卸载云监控时保留的旧数据,请按照选项选择安装方式!\033[0m"
  585. echo -e "1) 还原以前的备份并安装堡塔云监控系统!"
  586. echo -e "2) 不使用原有备份,全新安装堡塔云监控系统!"
  587. echo -e "----------------------------------------------------"
  588. read -p "请输入对应选项[1|2]进行安装或输入任意内容退出安装: " yes;
  589. if [ "$yes" == "1" ]; then
  590. re_install="2"
  591. echo "开始安装堡塔云监控系统并还原数据..."
  592. elif [ "$yes" == "2" ]; then
  593. echo "开始全新安装堡塔云监控系统..."
  594. else
  595. echo -e "------------"
  596. echo "取消安装"
  597. exit;
  598. fi
  599. }
  600. Backup_Monitor(){
  601. if [ -f "/etc/init.d/btm" ]; then
  602. /etc/init.d/btm stop
  603. sleep 1
  604. fi
  605. if [ ! -d "${old_dir}" ];then
  606. mkdir -p ${old_dir}
  607. else
  608. mv ${old_dir} ${old_dir}_$(date +%Y_%m_%d_%H_%M_%S)
  609. mkdir -p ${old_dir}
  610. fi
  611. mv ${monitor_path}/data ${old_dir}/data
  612. mv ${monitor_path}/config ${old_dir}/config
  613. mv ${monitor_path}/ssl ${old_dir}/ssl
  614. }
  615. Reinstall_Monitor(){
  616. rm -rf $monitor_path/data
  617. rm -rf $monitor_path/config
  618. rm -rf $monitor_path/ssl
  619. mv $old_dir/data $monitor_path/data
  620. mv $old_dir/config $monitor_path/config
  621. mv $old_dir/ssl $monitor_path/ssl
  622. rm -rf $old_dir
  623. }
  624. Get_Pack_Manager(){
  625. if [ -f "/usr/bin/yum" ] && [ -d "/etc/yum.repos.d" ]; then
  626. PM="yum"
  627. elif [ -f "/usr/bin/apt-get" ] && [ -f "/usr/bin/dpkg" ]; then
  628. PM="apt-get"
  629. fi
  630. }
  631. Install_RPM_Pack(){
  632. 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"
  633. yum install -y ${yumPacks}
  634. for yumPack in ${yumPacks}
  635. do
  636. rpmPack=$(rpm -q ${yumPack})
  637. packCheck=$(echo ${rpmPack}|grep not)
  638. if [ "${packCheck}" ]; then
  639. yum install ${yumPack} -y
  640. fi
  641. done
  642. }
  643. Install_Deb_Pack(){
  644. 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";
  645. apt-get update -y
  646. apt-get install -y $debPacks --force-yes
  647. for debPack in ${debPacks}
  648. do
  649. packCheck=$(dpkg -l ${debPack})
  650. if [ "$?" -ne "0" ] ;then
  651. apt-get install -y $debPack
  652. fi
  653. done
  654. }
  655. Check_Sys_Write(){
  656. echo "正在检测系统关键目录是否可写"
  657. if [ ! -d "/etc/init.d" ];then
  658. mkdir -p /etc/init.d
  659. fi
  660. if [ -f /usr/bin/which ];then
  661. Get_Pack_Manager
  662. if [ "$PM" == "yum" ]; then
  663. read_dir="/usr/lib/systemd/system/ /etc/init.d/ /var/spool/cron/"
  664. else
  665. read_dir="/usr/lib/systemd/system/ /etc/init.d/ /var/spool/cron/crontabs/"
  666. fi
  667. for dir in ${read_dir[@]}
  668. do
  669. if [[ -d "$dir" ]]; then
  670. touch $dir/btm_install_test_111.pl
  671. state=$(echo $?)
  672. if [[ "$state" != "0" ]];then
  673. echo -e "\033[31m错误:检测到系统关键目录不可写! $read_dir \033[0m"
  674. echo "1、如果安装了[宝塔系统加固],请先临时关闭"
  675. echo "2、如果安装了云锁,请临时关闭[系统加固]功能"
  676. echo "3、如果安装了安全狗,请临时关闭[系统防护]功能"
  677. echo "4、如果使用了其它安全软件,请先卸载 "
  678. echo -e "5、如果使用了禁止写入命令,请执行命令取消禁止写入:\n chattr -iaR $read_dir "
  679. echo ""
  680. echo -e "\033[31m解决以上问题后,请尝试重新安装! \033[0m"
  681. echo -e "如果无法解决请截图以上报错信息发帖至论坛www.bt.cn/bbs求助"
  682. exit 1
  683. else
  684. rm -f $dir/btm_install_test_111.pl
  685. fi
  686. fi
  687. done
  688. fi
  689. }
  690. Check_Sys_Packs(){
  691. echo "正在检查系统中是否存在必备的依赖包"
  692. Packs="wget curl unzip gcc make"
  693. for pack in ${Packs[@]}
  694. do
  695. check_pack=$(which $pack)
  696. #echo $check_pack
  697. if [[ "$check_pack" == "" ]]; then
  698. echo -e "\033[31mERROR: $pack 命令不存在,尝试以下解决方法:\033[0m"
  699. if [ "$PM" == "yum" ]; then
  700. echo 1、使用命令重新安装依赖包:yum reinstall -y ${Packs}
  701. else
  702. echo 1、使用命令重新安装依赖包:apt-get reinstall -y ${Packs}
  703. fi
  704. echo -e "2、检查系统源是否可用?尝试更换可用的源参考教程:\n https://www.bt.cn/bbs/thread-58005-1-1.html "
  705. echo ""
  706. echo -e "\033[31m解决以上问题后,请尝试重新安装! \033[0m"
  707. echo -e "如果无法解决请截图以上报错信息发帖至论坛www.bt.cn/bbs求助"
  708. exit 1
  709. fi
  710. done
  711. }
  712. Install_Main(){
  713. startTime=`date +%s`
  714. Check_Sys_Write
  715. System_Check
  716. Get_Pack_Manager
  717. get_node_url
  718. if [ "$PM" == "yum" ]; then
  719. Install_RPM_Pack
  720. else
  721. Install_Deb_Pack
  722. fi
  723. Check_Sys_Packs
  724. Install_Python_Lib
  725. Install_Monitor
  726. Set_Firewall
  727. Get_Ip_Address
  728. Service_Add
  729. if [ "$re_install" == "2" ]; then
  730. Reinstall_Monitor
  731. fi
  732. Start_Monitor
  733. }
  734. Uninstall_Monitor(){
  735. pkill BT-MONITOR
  736. /etc/init.d/btm stop
  737. if [ -f "/www/server/bt-monitor/sqlite-server.sh" ]; then
  738. chmod +x /www/server/bt-monitor/sqlite-server.sh
  739. /www/server/bt-monitor/sqlite-server.sh stop
  740. sleep 1
  741. fi
  742. Service_Del
  743. rm -rf $monitor_path
  744. rm -rf /usr/bin/btm
  745. rm -rf /etc/init.d/btm
  746. echo -e "堡塔云监控主控端卸载成功!"
  747. }
  748. Uninstall_agent(){
  749. get_node_url
  750. if [ -f "/tmp/btmonitoragent.sh" ];then
  751. rm -rf /tmp/btmonitoragent.sh
  752. fi
  753. curl -o /tmp/btmonitoragent.sh -sSO ${download_Url}/install/btmonitoragent.sh && bash /tmp/btmonitoragent.sh uninstall
  754. }
  755. action="${1}"
  756. if [ "$action" == "uninstall" ];then
  757. echo -e "----------------------------------------------------"
  758. echo -e "\033[33m检测到您正在卸载堡塔云监控系统,请按照选项选择卸载方式!\033[0m"
  759. echo -e "1) 备份数据后卸载:保存原有监控配置及数据并卸载堡塔云监控系统"
  760. echo -e "2) 完全卸载:清空原有监控配置及数据并卸载堡塔云监控系统"
  761. echo -e "----------------------------------------------------"
  762. read -p "请输入对应选项[1|2]进行卸载或输入任意内容退出卸载: " yes;
  763. if [ "$yes" == "1" ]; then
  764. Backup_Monitor
  765. echo -e "----------------------------------------------------"
  766. echo -e "\033[33m已备份原有监控数据至: ${old_dir}\033[0m"
  767. elif [ "$yes" == "2" ]; then
  768. echo "正在清空堡塔云监控系统数据..."
  769. else
  770. echo -e "------------"
  771. echo "取消卸载"
  772. exit;
  773. fi
  774. Uninstall_agent
  775. Uninstall_Monitor
  776. exit 0
  777. else
  778. echo "
  779. +----------------------------------------------------------------------
  780. | Bt-Monitor FOR CentOS/Ubuntu/Debian
  781. +----------------------------------------------------------------------
  782. | Copyright © 2015-2099 BT-SOFT(https://www.bt.cn) All rights reserved.
  783. +----------------------------------------------------------------------
  784. | The Monitor URL will be https://SERVER_IP:806 when installed.
  785. +----------------------------------------------------------------------
  786. "
  787. while [ "$go" != 'y' ] && [ "$go" != 'n' ]
  788. do
  789. read -p "Do you want to install Bt-Monitor to the $setup_path directory now?(y/n): " go;
  790. done
  791. if [ "$go" == 'n' ];then
  792. exit;
  793. fi
  794. Install_Main
  795. #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"
  796. #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"
  797. fi
  798. echo -e "=================================================================="
  799. echo -e "\033[32m堡塔云监控主控端安装完成! Installed successfully!\033[0m"
  800. echo -e "=================================================================="
  801. echo "外网访问地址: https://${getIpAddress}:${panelPort}${adminpath}"
  802. echo "内网访问地址: https://${LOCAL_IP}:${panelPort}${adminpath}"
  803. echo -e "username: admin"
  804. echo -e "password: $password"
  805. echo -e "\033[33mIf you cannot access the Monitor,\033[0m"
  806. echo -e "\033[33mrelease the following Monitor port [${panelPort}] in the security group\033[0m"
  807. echo -e "\033[33m若无法访问堡塔云监控主控端,请检查防火墙/安全组是否有放行[${panelPort}]端口\033[0m"
  808. echo -e "=================================================================="
  809. endTime=`date +%s`
  810. ((outTime=($endTime-$startTime)/60))
  811. echo -e "Time consumed:\033[32m $outTime \033[0mMinute!"