1
0

upgrade_web.sh 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345
  1. #!/bin/bash
  2. # Author: yeho <lj2007331 AT gmail.com>
  3. # BLOG: https://linuxeye.com
  4. #
  5. # Notes: OneinStack for CentOS/RedHat 7+ Debian 8+ and Ubuntu 16+
  6. #
  7. # Project home page:
  8. # https://oneinstack.com
  9. # https://github.com/oneinstack/oneinstack
  10. Upgrade_Nginx() {
  11. pushd ${oneinstack_dir}/src > /dev/null
  12. [ ! -e "${nginx_install_dir}/sbin/nginx" ] && echo "${CWARNING}Nginx is not installed on your system! ${CEND}" && exit 1
  13. OLD_nginx_ver_tmp=`${nginx_install_dir}/sbin/nginx -v 2>&1`
  14. OLD_nginx_ver=${OLD_nginx_ver_tmp##*/}
  15. Latest_nginx_ver=`curl --connect-timeout 2 -m 3 -s http://nginx.org/en/CHANGES-1.20 | awk '/Changes with nginx/{print$0}' | awk '{print $4}' | head -1`
  16. [ -z "${Latest_nginx_ver}" ] && Latest_nginx_ver=`curl --connect-timeout 2 -m 3 -s http://nginx.org/en/CHANGES | awk '/Changes with nginx/{print$0}' | awk '{print $4}' | head -1`
  17. echo
  18. echo "Current Nginx Version: ${CMSG}${OLD_nginx_ver}${CEND}"
  19. while :; do echo
  20. [ "${nginx_flag}" != 'y' ] && read -e -p "Please input upgrade Nginx Version(default: ${Latest_nginx_ver}): " NEW_nginx_ver
  21. NEW_nginx_ver=${NEW_nginx_ver:-${Latest_nginx_ver}}
  22. if [ "${NEW_nginx_ver}" != "${OLD_nginx_ver}" ]; then
  23. [ ! -e "nginx-${NEW_nginx_ver}.tar.gz" ] && wget --no-check-certificate -c http://nginx.org/download/nginx-${NEW_nginx_ver}.tar.gz > /dev/null 2>&1
  24. if [ -e "nginx-${NEW_nginx_ver}.tar.gz" ]; then
  25. src_url=https://www.openssl.org/source/openssl-${openssl11_ver}.tar.gz && Download_src
  26. src_url=http://mirrors.linuxeye.com/oneinstack/src/pcre-${pcre_ver}.tar.gz && Download_src
  27. src_url=http://mirrors.linuxeye.com/oneinstack/src/ngx_devel_kit.tar.gz && Download_src
  28. src_url=http://mirrors.linuxeye.com/oneinstack/src/lua-nginx-module-${lua_nginx_module_ver}.tar.gz && Download_src
  29. tar xzf openssl-${openssl11_ver}.tar.gz
  30. tar xzf pcre-${pcre_ver}.tar.gz
  31. tar xzf ngx_devel_kit.tar.gz
  32. tar xzf lua-nginx-module-${lua_nginx_module_ver}.tar.gz
  33. echo "Download [${CMSG}nginx-${NEW_nginx_ver}.tar.gz${CEND}] successfully! "
  34. break
  35. else
  36. echo "${CWARNING}Nginx version does not exist! ${CEND}"
  37. fi
  38. else
  39. echo "${CWARNING}input error! Upgrade Nginx version is the same as the old version${CEND}"
  40. exit
  41. fi
  42. done
  43. if [ -e "nginx-${NEW_nginx_ver}.tar.gz" ]; then
  44. echo "[${CMSG}nginx-${NEW_nginx_ver}.tar.gz${CEND}] found"
  45. if [ "${nginx_flag}" != 'y' ]; then
  46. echo "Press Ctrl+c to cancel or Press any key to continue..."
  47. char=`get_char`
  48. fi
  49. tar xzf nginx-${NEW_nginx_ver}.tar.gz
  50. pushd nginx-${NEW_nginx_ver}
  51. make clean
  52. sed -i 's@CFLAGS="$CFLAGS -g"@#CFLAGS="$CFLAGS -g"@' auto/cc/gcc # close debug
  53. ${nginx_install_dir}/sbin/nginx -V &> $$
  54. nginx_configure_args_tmp=`cat $$ | grep 'configure arguments:' | awk -F: '{print $2}'`
  55. rm -rf $$
  56. nginx_configure_args=`echo ${nginx_configure_args_tmp} | sed "s@lua-nginx-module-\w.\w\+.\w\+ @lua-nginx-module-${lua_nginx_module_ver} @" | sed "s@lua-nginx-module @lua-nginx-module-${lua_nginx_module_ver} @" | sed "s@--with-openssl=../openssl-\w.\w.\w\+ @--with-openssl=../openssl-${openssl11_ver} @" | sed "s@--with-pcre=../pcre-\w.\w\+ @--with-pcre=../pcre-${pcre_ver} @"`
  57. export LUAJIT_LIB=/usr/local/lib
  58. export LUAJIT_INC=/usr/local/include/luajit-2.1
  59. ./configure ${nginx_configure_args}
  60. make -j ${THREAD}
  61. if [ -f "objs/nginx" ]; then
  62. /bin/mv ${nginx_install_dir}/sbin/nginx{,`date +%m%d`}
  63. /bin/cp objs/nginx ${nginx_install_dir}/sbin/nginx
  64. kill -USR2 `cat /var/run/nginx.pid`
  65. sleep 1
  66. kill -QUIT `cat /var/run/nginx.pid.oldbin`
  67. popd > /dev/null
  68. echo "You have ${CMSG}successfully${CEND} upgrade from ${CWARNING}${OLD_nginx_ver}${CEND} to ${CWARNING}${NEW_nginx_ver}${CEND}"
  69. rm -rf nginx-${NEW_nginx_ver}
  70. else
  71. echo "${CFAILURE}Upgrade Nginx failed! ${CEND}"
  72. fi
  73. fi
  74. popd > /dev/null
  75. }
  76. Upgrade_Tengine() {
  77. pushd ${oneinstack_dir}/src > /dev/null
  78. [ ! -e "${tengine_install_dir}/sbin/nginx" ] && echo "${CWARNING}Tengine is not installed on your system! ${CEND}" && exit 1
  79. OLD_tengine_ver_tmp=`${tengine_install_dir}/sbin/nginx -v 2>&1`
  80. OLD_tengine_ver="`echo ${OLD_tengine_ver_tmp#*/} | awk '{print $1}'`"
  81. Latest_tengine_ver=`curl --connect-timeout 2 -m 3 -s http://tengine.taobao.org/changelog.html | grep -v generator | grep -oE "[0-9]\.[0-9]\.[0-9]+" | head -1`
  82. echo
  83. echo "Current Tengine Version: ${CMSG}${OLD_tengine_ver}${CEND}"
  84. while :; do echo
  85. [ "${tengine_flag}" != 'y' ] && read -e -p "Please input upgrade Tengine Version(default: ${Latest_tengine_ver}): " NEW_tengine_ver
  86. NEW_tengine_ver=${NEW_tengine_ver:-${Latest_tengine_ver}}
  87. if [ "${NEW_tengine_ver}" != "${OLD_tengine_ver}" ]; then
  88. [ ! -e "tengine-${NEW_tengine_ver}.tar.gz" ] && wget --no-check-certificate -c http://tengine.taobao.org/download/tengine-${NEW_tengine_ver}.tar.gz > /dev/null 2>&1
  89. if [ -e "tengine-${NEW_tengine_ver}.tar.gz" ]; then
  90. src_url=https://www.openssl.org/source/openssl-${openssl11_ver}.tar.gz && Download_src
  91. src_url=http://mirrors.linuxeye.com/oneinstack/src/pcre-${pcre_ver}.tar.gz && Download_src
  92. tar xzf openssl-${openssl11_ver}.tar.gz
  93. tar xzf pcre-${pcre_ver}.tar.gz
  94. echo "Download [${CMSG}tengine-${NEW_tengine_ver}.tar.gz${CEND}] successfully! "
  95. break
  96. else
  97. echo "${CWARNING}Tengine version does not exist! ${CEND}"
  98. fi
  99. else
  100. echo "${CWARNING}input error! Upgrade Tengine version is the same as the old version${CEND}"
  101. exit
  102. fi
  103. done
  104. if [ -e "tengine-${NEW_tengine_ver}.tar.gz" ]; then
  105. echo "[${CMSG}tengine-${NEW_tengine_ver}.tar.gz${CEND}] found"
  106. if [ "${tengine_flag}" != 'y' ]; then
  107. echo "Press Ctrl+c to cancel or Press any key to continue..."
  108. char=`get_char`
  109. fi
  110. tar xzf tengine-${NEW_tengine_ver}.tar.gz
  111. pushd tengine-${NEW_tengine_ver}
  112. make clean
  113. ${tengine_install_dir}/sbin/nginx -V &> $$
  114. tengine_configure_args_tmp=`cat $$ | grep 'configure arguments:' | awk -F: '{print $2}'`
  115. rm -rf $$
  116. tengine_configure_args=`echo ${tengine_configure_args_tmp} | sed "s@--with-openssl=../openssl-\w.\w.\w\+ @--with-openssl=../openssl-${openssl11_ver} @" | sed "s@--with-pcre=../pcre-\w.\w\+ @--with-pcre=../pcre-${pcre_ver} @"`
  117. export LUAJIT_LIB=/usr/local/lib
  118. export LUAJIT_INC=/usr/local/include/luajit-2.1
  119. ./configure ${tengine_configure_args}
  120. make
  121. if [ -f "objs/nginx" ]; then
  122. /bin/mv ${tengine_install_dir}/sbin/nginx{,`date +%m%d`}
  123. /bin/mv ${tengine_install_dir}/modules{,`date +%m%d`}
  124. /bin/cp objs/nginx ${tengine_install_dir}/sbin/nginx
  125. chmod +x ${tengine_install_dir}/sbin/*
  126. make install
  127. kill -USR2 `cat /var/run/nginx.pid`
  128. sleep 1
  129. kill -QUIT `cat /var/run/nginx.pid.oldbin`
  130. popd > /dev/null
  131. echo "You have ${CMSG}successfully${CEND} upgrade from ${CWARNING}$OLD_tengine_ver${CEND} to ${CWARNING}${NEW_tengine_ver}${CEND}"
  132. rm -rf tengine-${NEW_tengine_ver}
  133. else
  134. echo "${CFAILURE}Upgrade Tengine failed! ${CEND}"
  135. fi
  136. fi
  137. popd > /dev/null
  138. }
  139. Upgrade_OpenResty() {
  140. pushd ${oneinstack_dir}/src > /dev/null
  141. [ ! -e "${openresty_install_dir}/nginx/sbin/nginx" ] && echo "${CWARNING}OpenResty is not installed on your system! ${CEND}" && exit 1
  142. OLD_openresy_ver_tmp=`${openresty_install_dir}/nginx/sbin/nginx -v 2>&1`
  143. OLD_openresy_ver="`echo ${OLD_openresy_ver_tmp#*/} | awk '{print $1}'`"
  144. Latest_openresy_ver=`curl --connect-timeout 2 -m 3 -s https://openresty.org/en/download.html | awk '/download\/openresty-/{print $0}' | grep -oE "[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+" | head -1`
  145. echo
  146. echo "Current OpenResty Version: ${CMSG}${OLD_openresy_ver}${CEND}"
  147. while :; do echo
  148. [ "${openresty_flag}" != 'y' ] && read -e -p "Please input upgrade OpenResty Version(default: ${Latest_openresy_ver}): " NEW_openresy_ver
  149. NEW_openresy_ver=${NEW_openresy_ver:-${Latest_openresy_ver}}
  150. if [ "${NEW_openresy_ver}" != "${OLD_openresy_ver}" ]; then
  151. [ ! -e "openresty-${NEW_openresy_ver}.tar.gz" ] && wget --no-check-certificate -c https://openresty.org/download/openresty-${NEW_openresy_ver}.tar.gz > /dev/null 2>&1
  152. if [ -e "openresty-${NEW_openresy_ver}.tar.gz" ]; then
  153. src_url=https://www.openssl.org/source/openssl-${openssl11_ver}.tar.gz && Download_src
  154. src_url=http://mirrors.linuxeye.com/oneinstack/src/pcre-${pcre_ver}.tar.gz && Download_src
  155. tar xzf openssl-${openssl11_ver}.tar.gz
  156. tar xzf pcre-${pcre_ver}.tar.gz
  157. echo "Download [${CMSG}openresty-${NEW_openresy_ver}.tar.gz${CEND}] successfully! "
  158. break
  159. else
  160. echo "${CWARNING}OpenResty version does not exist! ${CEND}"
  161. fi
  162. else
  163. echo "${CWARNING}input error! Upgrade OpenResty version is the same as the old version${CEND}"
  164. exit
  165. fi
  166. done
  167. if [ -e "openresty-${NEW_openresy_ver}.tar.gz" ]; then
  168. echo "[${CMSG}openresty-${NEW_openresy_ver}.tar.gz${CEND}] found"
  169. if [ "${openresty_flag}" != 'y' ]; then
  170. echo "Press Ctrl+c to cancel or Press any key to continue..."
  171. char=`get_char`
  172. fi
  173. tar xzf openresty-${NEW_openresy_ver}.tar.gz
  174. pushd openresty-${NEW_openresy_ver}
  175. make clean
  176. sed -i 's@CFLAGS="$CFLAGS -g"@#CFLAGS="$CFLAGS -g"@' bundle/nginx-${NEW_openresy_ver%.*}/auto/cc/gcc # close debug
  177. ${openresty_install_dir}/nginx/sbin/nginx -V &> $$
  178. ./configure --prefix=${openresty_install_dir} --user=${run_user} --group=${run_user} --with-http_stub_status_module --with-http_sub_module --with-http_v2_module --with-http_ssl_module --with-http_gzip_static_module --with-http_realip_module --with-http_flv_module --with-http_mp4_module --with-openssl=../openssl-${openssl11_ver} --with-pcre=../pcre-${pcre_ver} --with-pcre-jit --with-ld-opt='-ljemalloc -Wl,-u,pcre_version' ${nginx_modules_options}
  179. make -j ${THREAD}
  180. if [ -f "build/nginx-${NEW_openresy_ver%.*}/objs/nginx" ]; then
  181. /bin/mv ${openresty_install_dir}/nginx/sbin/nginx{,`date +%m%d`}
  182. make install
  183. kill -USR2 `cat /var/run/nginx.pid`
  184. sleep 1
  185. kill -QUIT `cat /var/run/nginx.pid.oldbin`
  186. popd > /dev/null
  187. echo "You have ${CMSG}successfully${CEND} upgrade from ${CWARNING}${OLD_openresy_ver}${CEND} to ${CWARNING}${NEW_openresy_ver}${CEND}"
  188. rm -rf openresty-${NEW_openresy_ver}
  189. else
  190. echo "${CFAILURE}Upgrade OpenResty failed! ${CEND}"
  191. fi
  192. fi
  193. popd > /dev/null
  194. }
  195. Upgrade_Apache() {
  196. pushd ${oneinstack_dir}/src > /dev/null
  197. [ ! -e "${apache_install_dir}/bin/httpd" ] && echo "${CWARNING}Apache is not installed on your system! ${CEND}" && exit 1
  198. OLD_apache_ver="`${apache_install_dir}/bin/httpd -v | grep version | awk -F'/| ' '{print $4}'`"
  199. Apache_main_ver="`echo ${OLD_apache_ver} | awk -F. '{print $1 $2}'`"
  200. Latest_apache_ver=`curl --connect-timeout 2 -m 3 -s http://httpd.apache.org/download.cgi | awk "/#apache${Apache_main_ver}/{print $2}" | head -1 | grep -oE "2\.[24]\.[0-9]+"`
  201. Latest_apache_ver=${Latest_apache_ver:-${apache22_ver}}
  202. echo
  203. echo "Current Apache Version: ${CMSG}${OLD_apache_ver}${CEND}"
  204. while :; do echo
  205. [ "${apache_flag}" != 'y' ] && read -e -p "Please input upgrade Apache Version(Default: ${Latest_apache_ver}): " NEW_apache_ver
  206. NEW_apache_ver=${NEW_apache_ver:-${Latest_apache_ver}}
  207. if [ `echo ${NEW_apache_ver} | awk -F. '{print $1$2}'` == "${Apache_main_ver}" ]; then
  208. if [ "${NEW_apache_ver}" != "${OLD_apache_ver}" ]; then
  209. if [ "${Apache_main_ver}" == '24' ]; then
  210. src_url=http://archive.apache.org/dist/apr/apr-${apr_ver}.tar.gz && Download_src
  211. src_url=http://archive.apache.org/dist/apr/apr-util-${apr_util_ver}.tar.gz && Download_src
  212. fi
  213. [ ! -e "httpd-${NEW_apache_ver}.tar.gz" ] && wget --no-check-certificate -c http://archive.apache.org/dist/httpd/httpd-${NEW_apache_ver}.tar.gz > /dev/null 2>&1
  214. if [ -e "httpd-${NEW_apache_ver}.tar.gz" ]; then
  215. echo "Download [${CMSG}apache-${NEW_apache_ver}.tar.gz${CEND}] successfully! "
  216. break
  217. else
  218. echo "${CWARNING}Apache version does not exist! ${CEND}"
  219. fi
  220. else
  221. echo "${CWARNING}input error! Upgrade Apache version is the same as the old version${CEND}"
  222. exit
  223. fi
  224. else
  225. echo "${CWARNING}input error! ${CEND}Please only input '${CMSG}${OLD_apache_ver%.*}.xx${CEND}'"
  226. [ "${apache_flag}" == 'y' ] && exit
  227. fi
  228. done
  229. if [ -e "httpd-${NEW_apache_ver}.tar.gz" ]; then
  230. echo "[${CMSG}httpd-${NEW_apache_ver}.tar.gz${CEND}] found"
  231. if [ "${apache_flag}" != 'y' ]; then
  232. echo "Press Ctrl+c to cancel or Press any key to continue..."
  233. char=`get_char`
  234. fi
  235. if [ "${Apache_main_ver}" == '24' ]; then
  236. # install apr
  237. if [ ! -e "${apr_install_dir}/bin/apr-1-config" ]; then
  238. tar xzf apr-${apr_ver}.tar.gz
  239. pushd apr-${apr_ver} > /dev/null
  240. ./configure --prefix=${apr_install_dir}
  241. make -j ${THREAD} && make install
  242. popd > /dev/null
  243. rm -rf apr-${apr_ver}
  244. fi
  245. # install apr-util
  246. if [ ! -e "${apr_install_dir}/bin/apu-1-config" ]; then
  247. tar xzf apr-util-${apr_util_ver}.tar.gz
  248. pushd apr-util-${apr_util_ver} > /dev/null
  249. ./configure --prefix=${apr_install_dir} --with-apr=${apr_install_dir}
  250. make -j ${THREAD} && make install
  251. popd > /dev/null
  252. rm -rf apr-util-${apr_util_ver}
  253. fi
  254. fi
  255. tar xzf httpd-${NEW_apache_ver}.tar.gz
  256. pushd httpd-${NEW_apache_ver}
  257. make clean
  258. if [ "${Apache_main_ver}" == '24' ]; then
  259. LDFLAGS=-ldl ./configure --prefix=${apache_install_dir} --enable-mpms-shared=all --with-pcre --with-apr=${apr_install_dir} --with-apr-util=${apr_install_dir} --enable-headers --enable-mime-magic --enable-deflate --enable-proxy --enable-so --enable-dav --enable-rewrite --enable-remoteip --enable-expires --enable-static-support --enable-suexec --enable-mods-shared=most --enable-nonportable-atomics=yes --enable-ssl --with-ssl=${openssl_install_dir} --enable-http2 --with-nghttp2=/usr/local
  260. elif [ "${Apache_main_ver}" == '22' ]; then
  261. LDFLAGS=-ldl ./configure --prefix=${apache_install_dir} --with-mpm=prefork --enable-mpms-shared=all --with-included-apr --enable-headers --enable-mime-magic --enable-deflate --enable-proxy --enable-so --enable-dav --enable-rewrite --enable-expires --enable-static-support --enable-suexec --with-expat=builtin --enable-mods-shared=most --enable-ssl --with-ssl=${openssl_install_dir}
  262. fi
  263. make -j ${THREAD}
  264. if [ -e 'httpd' ]; then
  265. [[ -d ${apache_install_dir}_bak && -d ${apache_install_dir} ]] && rm -rf ${apache_install_dir}_bak
  266. service httpd stop
  267. /bin/cp -R ${apache_install_dir}{,_bak}
  268. make install && unset LDFLAGS
  269. service httpd start
  270. popd > /dev/null
  271. echo "You have ${CMSG}successfully${CEND} upgrade from ${CWARNING}${OLD_apache_ver}${CEND} to ${CWARNING}${NEW_apache_ver}${CEND}"
  272. rm -rf httpd-${NEW_apache_ver}
  273. else
  274. echo "${CFAILURE}Upgrade Apache failed! ${CEND}"
  275. fi
  276. fi
  277. popd > /dev/null
  278. }
  279. Upgrade_Tomcat() {
  280. pushd ${oneinstack_dir}/src > /dev/null
  281. [ ! -e "${tomcat_install_dir}/conf/server.xml" ] && echo "${CWARNING}Tomcat is not installed on your system! ${CEND}" && exit 1
  282. OLD_tomcat_ver="`${tomcat_install_dir}/bin/version.sh | awk '/Server number/{print $3}' | awk -F. '{print $1"."$2"."$3}'`"
  283. Tomcat_flag="`echo ${OLD_tomcat_ver} | awk -F. '{print $1}'`"
  284. Latest_tomcat_ver=`curl --connect-timeout 2 -m 3 -s https://tomcat.apache.org/download-${Tomcat_flag}0.cgi | grep "README" | head -1 | grep -oE "[6-9]\.[0-9]\.[0-9]+"`
  285. Latest_tomcat_ver=${Latest_tomcat_ver:-${tomcat10_ver}}
  286. echo
  287. echo "Current Tomcat Version: ${CMSG}${OLD_tomcat_ver}${CEND}"
  288. while :; do echo
  289. [ "${tomcat_flag}" != 'y' ] && read -e -p "Please input upgrade Tomcat Version(Default: ${Latest_tomcat_ver}): " NEW_tomcat_ver
  290. NEW_tomcat_ver=${NEW_tomcat_ver:-${Latest_tomcat_ver}}
  291. if [ "`echo ${NEW_tomcat_ver} | awk -F. '{print $1}'`" == "${Tomcat_flag}" ]; then
  292. rm -f catalina-jmx-remote.jar
  293. echo "Download tomcat-${NEW_tomcat_ver}..."
  294. src_url=http://mirrors.linuxeye.com/apache/tomcat/v${NEW_tomcat_ver}/apache-tomcat-${NEW_tomcat_ver}.tar.gz && Download_src
  295. [ ! -e "apache-tomcat-${NEW_tomcat_ver}.tar.gz" ] && wget --no-check-certificate -c https://archive.apache.org/dist/tomcat-${OLD_tomcat_ver}/v${NEW_tomcat_ver}/bin/apache-tomcat-${NEW_tomcat_ver}.tar.gz > /dev/null 2>&1
  296. if [ -e "${tomcat_install_dir}/lib/catalina-jmx-remote.jar" ]; then
  297. src_url=http://mirrors.linuxeye.com/apache/tomcat/v${NEW_tomcat_ver}/catalina-jmx-remote.jar && Download_src
  298. [ ! -e "catalina-jmx-remote.jar" ] && wget --no-check-certificate -c https://archive.apache.org/dist/tomcat-${OLD_tomcat_ver}/v${NEW_tomcat_ver}/bin/extras/catalina-jmx-remote.jar > /dev/null 2>&1
  299. fi
  300. if [ -e "apache-tomcat-${NEW_tomcat_ver}.tar.gz" ]; then
  301. echo "Download [${CMSG}apache-tomcat-${NEW_tomcat_ver}.tar.gz${CEND}] successfully! "
  302. break
  303. else
  304. echo "${CWARNING}Tomcat version does not exist! ${CEND}"
  305. fi
  306. else
  307. echo "${CWARNING}input error! ${CEND}Please only input '${CMSG}${Tomcat_flag}.xx${CEND}'"
  308. fi
  309. done
  310. if [ -e "apache-tomcat-${NEW_tomcat_ver}.tar.gz" ]; then
  311. echo "[${CMSG}apache-tomcat-${NEW_tomcat_ver}.tar.gz${CEND}] found"
  312. if [ "${tomcat_flag}" != 'y' ]; then
  313. echo "Press Ctrl+c to cancel or Press any key to continue..."
  314. char=`get_char`
  315. fi
  316. tar xzf apache-tomcat-${NEW_tomcat_ver}.tar.gz
  317. /bin/mv apache-tomcat-${NEW_tomcat_ver}/conf/server.xml{,_bk}
  318. /bin/cp ${tomcat_install_dir}/conf/{server.xml,jmxremote.access,jmxremote.password,tomcat-users.xml} apache-tomcat-${NEW_tomcat_ver}/conf/
  319. [ -e "${tomcat_install_dir}/lib/catalina-jmx-remote.jar" ] && /bin/cp catalina-jmx-remote.jar apache-tomcat-${NEW_tomcat_ver}/lib
  320. /bin/cp ${tomcat_install_dir}/bin/setenv.sh apache-tomcat-${NEW_tomcat_ver}/bin/
  321. /bin/cp -R ${tomcat_install_dir}/conf/vhost apache-tomcat-${NEW_tomcat_ver}/conf/
  322. chmod +x apache-tomcat-${NEW_tomcat_ver}/bin/*.sh
  323. [[ -d ${tomcat_install_dir}_bak && -d ${tomcat_install_dir} ]] && rm -rf ${tomcat_install_dir}._bak
  324. service tomcat stop
  325. /bin/mv ${tomcat_install_dir}{,_bak}
  326. /bin/mv apache-tomcat-${NEW_tomcat_ver} ${tomcat_install_dir} && chown -R ${run_user}:${run_group} ${tomcat_install_dir}
  327. if [ -e "${tomcat_install_dir}/conf/server.xml" ]; then
  328. service tomcat start
  329. echo "You have ${CMSG}successfully${CEND} upgrade from ${CWARNING}${OLD_tomcat_ver}${CEND} to ${CWARNING}${NEW_tomcat_ver}${CEND}"
  330. else
  331. echo "${CFAILURE}Upgrade Tomcat failed! ${CEND}"
  332. fi
  333. fi
  334. popd > /dev/null
  335. }