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.

865 lines
28 KiB

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