免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 4661 | 回复: 6
打印 上一主题 下一主题

[Web] tomcat 以非root身份启动 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-09-25 09:54 |只看该作者 |倒序浏览
该如何设置?并且,如何设置为使用80端口呢?


谢谢!

[ 本帖最后由 diyself 于 2009-9-25 09:59 编辑 ]

论坛徽章:
0
2 [报告]
发表于 2009-09-25 11:34 |只看该作者

回复 #1 diyself 的帖子

su - tomcat -c '/usr/local/tomcat/bin/startup.sh'

iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 80 -j REDIRECT --to-ports 8080


自问自答

论坛徽章:
5
寅虎
日期:2015-01-20 09:16:52亥猪
日期:2015-01-21 14:43:44IT运维版块每日发帖之星
日期:2015-12-17 06:20:00每日论坛发贴之星
日期:2015-12-17 06:20:00每周论坛发贴之星
日期:2015-12-20 22:22:00
3 [报告]
发表于 2009-09-25 14:01 |只看该作者
看12期的开源时代

论坛徽章:
0
4 [报告]
发表于 2009-09-26 20:29 |只看该作者
iptables

论坛徽章:
18
巳蛇
日期:2014-12-03 08:27:5115-16赛季CBA联赛之吉林
日期:2016-04-18 15:24:24qiaoba
日期:2016-06-17 17:41:1615-16赛季CBA联赛之八一
日期:2016-06-20 15:13:1415-16赛季CBA联赛之广夏
日期:2016-06-29 10:38:28极客徽章
日期:2016-12-07 14:03:4015-16赛季CBA联赛之吉林
日期:2017-03-06 13:47:55
5 [报告]
发表于 2009-09-28 10:50 |只看该作者

  1. [root@tomcat ~]# cd /opt/tomcat/bin/

  2. [root@tomcat bin]# ls

  3. bootstrap.jar catalina-tasks.xml digest.bat service.bat shutdown.bat startup.sh tomcat-juli.jar tool-wrapper.sh
  4. catalina.bat commons-daemon.jar digest.sh setclasspath.bat shutdown.sh tomcat6.exe tomcat-native.tar.gz version.bat
  5. catalina.sh cpappend.bat jsvc.tar.gz setclasspath.sh startup.bat tomcat6w.exe tool-wrapper.bat version.sh
  6. [root@tomcat bin]# tar zxvf jsvc.tar.gz

  7. [root@tomcat bin]# cd jsvc-src/

  8. [root@tomcat jsvc-src]# chmod +x configure

  9. [root@tomcat jsvc-src]# ./configure --with-java=/opt/java

  10. [root@tomcat jsvc-src]# make

  11. [root@tomcat jsvc-src]# cp /opt/tomcat/bin/jsvc-src/native/Tomcat5.sh /etc/rc.d/init.d/

  12. [root@tomcat jsvc-src]# cd /etc/rc.d/init.d/

  13. [root@tomcat init.d]# chmod +x Tomcat5.sh

  14. [root@tomcat init.d]# ln -s /etc/init.d/tomcat5.sh /etc/rc0.d/K90tomcat5.sh

  15. [root@tomcat init.d]# ln -s /etc/init.d/tomcat5.sh /etc/rc1.d/K90tomcat5.sh

  16. [root@tomcat init.d]# ln -s /etc/init.d/tomcat5.sh /etc/rc2.d/S90tomcat5.sh

  17. [root@tomcat init.d]# ln -s /etc/init.d/tomcat5.sh /etc/rc3.d/S90tomcat5.sh

  18. [root@tomcat init.d]# ln -s /etc/init.d/tomcat5.sh /etc/rc4.d/S90tomcat5.sh

  19. [root@tomcat init.d]# ln -s /etc/init.d/tomcat5.sh /etc/rc5.d/S90tomcat5.sh

  20. [root@tomcat init.d]# ln -s /etc/init.d/tomcat5.sh /etc/rc6.d/K95tomcat5.sh

  21. [root@tomcat init.d]# more Tomcat5.sh

  22. #!/bin/sh

  23. ##############################################################################

  24. #

  25. # Copyright 2004 The Apache Software Foundation.

  26. #

  27. # Licensed under the Apache License, Version 2.0 (the "License");

  28. # you may not use this file except in compliance with the License.

  29. # You may obtain a copy of the License at

  30. #

  31. # [url]http://www.apache.org/licenses/LICENSE-2.0[/url]

  32. #

  33. # Unless required by applicable law or agreed to in writing, software

  34. # distributed under the License is distributed on an "AS IS" BASIS,

  35. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

  36. # See the License for the specific language governing permissions and

  37. # limitations under the License.

  38. ##############################################################################

  39. #

  40. # Small shell script to show how to start/stop Tomcat using jsvc

  41. # If you want to have Tomcat running on port 80 please modify the server.xml

  42. # file:

  43. #

  44. # <!-- Define a non-SSL HTTP/1.1 Connector on port 80 -->

  45. # <Connector className="org.apache.catalina.connector.http.HttpConnector"

  46. # port="80" minProcessors="5" maxProcessors="75"

  47. # enableLookups="true" redirectPort="8443"

  48. # acceptCount="10" debug="0" connectionTimeout="60000"/>

  49. #

  50. # That is for Tomcat-5.0.x (Apache Tomcat/5.0)

  51. #

  52. # Adapt the following lines to your configuration

  53. JAVA_HOME=/opt/java
  54. CATALINA_HOME=/opt/tomcat
  55. DAEMON_HOME=/opt/tomcat
  56. TOMCAT_USER=root

  57. # for multi instances adapt those lines.

  58. TMP_DIR=/var/tmp
  59. PID_FILE=/var/run/jsvc.pid
  60. CATALINA_BASE=/opt/tomcat

  61. CATALINA_OPTS="-Djava.library.path=/home/jfclere/jakarta-tomcat-connectors/jni/native/.libs"
  62. CLASSPATH=\
  63. $JAVA_HOME/lib/tools.jar:\
  64. $CATALINA_HOME/bin/commons-daemon.jar:\
  65. $CATALINA_HOME/bin/bootstrap.jar

  66. case "$1" in
  67.   start)
  68.     #

  69.     # Start Tomcat

  70.     #

  71.     $DAEMON_HOME/bin/jsvc-src/jsvc \
  72.     -user $TOMCAT_USER \
  73.     -home $JAVA_HOME \
  74.     -Dcatalina.home=$CATALINA_HOME \
  75.     -Dcatalina.base=$CATALINA_BASE \
  76.     -Djava.io.tmpdir=$TMP_DIR \
  77.     -wait 10 \
  78.     -pidfile $PID_FILE \
  79.     -outfile $CATALINA_HOME/logs/catalina.out \
  80.     -errfile '&1' \
  81.     $CATALINA_OPTS \
  82.     -cp $CLASSPATH \
  83.     org.apache.catalina.startup.Bootstrap
  84.     #

  85.     # To get a verbose JVM

  86.     #-verbose \

  87.     # To get a debug of jsvc.

  88.     #-debug \

  89.     exit $?
  90.     ;;

  91.   stop)
  92.     #

  93.     # Stop Tomcat

  94.     #

  95.     $DAEMON_HOME/bin/jsvc-src/jsvc \
  96.     -stop \
  97.     -pidfile $PID_FILE \
  98.     org.apache.catalina.startup.Bootstrap
  99.     exit $?
  100.     ;;

  101.   *)
  102.     echo "Usage tomcat.sh start/stop"
  103.     exit 1;;
  104. esac
  105. [root@tomcat init.d]# /etc/rc.d/init.d/Tomcat5.sh start

  106. [root@tomcat init.d]# netstat -tnl

  107. Active Internet connections (only servers)
  108. Proto Recv-Q Send-Q Local Address Foreign Address State
  109. tcp 0 0 0.0.0.0:3306 0.0.0.0:* LISTEN
  110. tcp 0 0 :::8009 :::* LISTEN
  111. tcp 0 0 :::8080 :::* LISTEN
  112. tcp 0 0 :::80 :::* LISTEN
  113. tcp 0 0 :::22 :::* LISTEN
  114. [root@tomcat init.d]# /etc/rc.d/init.d/Tomcat5.sh stop

  115. [root@tomcat init.d]# netstat -tnl

  116. Active Internet connections (only servers)
  117. Proto Recv-Q Send-Q Local Address Foreign Address State
  118. tcp 0 0 0.0.0.0:3306 0.0.0.0:* LISTEN
  119. tcp 0 0 :::80 :::* LISTEN
  120. tcp 0 0 :::22 :::* LISTEN
  121. [root@tomcat init.d]# useradd tomcatadmin

  122. [root@tomcat init.d]# vi Tomcat5.sh

  123. TOMCAT_USER=tomcatadmin 改为这样
  124. [root@tomcat /]# chown -R tomcatadmin:tomcatadmin /opt/tomcat

  125. [root@tomcat /]# netstat -tnl

  126. Active Internet connections (only servers)
  127. Proto Recv-Q Send-Q Local Address Foreign Address State
  128. tcp 0 0 0.0.0.0:3306 0.0.0.0:* LISTEN
  129. tcp 0 0 :::80 :::* LISTEN
  130. tcp 0 0 :::22 :::* LISTEN
  131. [root@tomcat /]# /etc/rc.d/init.d/Tomcat5.sh start

  132. [root@tomcat /]# netstat -tnl

  133. Active Internet connections (only servers)
  134. Proto Recv-Q Send-Q Local Address Foreign Address State
  135. tcp 0 0 0.0.0.0:3306 0.0.0.0:* LISTEN
  136. tcp 0 0 :::8009 :::* LISTEN
  137. tcp 0 0 :::8080 :::* LISTEN
  138. tcp 0 0 :::80 :::* LISTEN
  139. tcp 0 0 :::22 :::* LISTEN
  140. [root@tomcat /]# /etc/rc.d/init.d/Tomcat5.sh stop

  141. [root@tomcat /]# netstat -tnl

  142. Active Internet connections (only servers)
  143. Proto Recv-Q Send-Q Local Address Foreign Address State
  144. tcp 0 0 0.0.0.0:3306 0.0.0.0:* LISTEN
  145. tcp 0 0 :::80 :::* LISTEN
  146. tcp 0 0 :::22 :::* LISTEN
  147. [root@tomcat /]# vi /etc/rc.d/init.d/Tomcat5.sh

  148. 在#!/bin/sh下面加入

  149. #chkconfig: 2345 85 15

  150. #description: 任意内容

  151. [root@tomcat /]# chkconfig --level 345 Tomcat5.sh on

  152. [root@tomcat /]# init 6
复制代码

论坛徽章:
0
6 [报告]
发表于 2009-09-29 10:17 |只看该作者
用nginx proxy吧,很方便

加一个serveletwrapper,重载getRemoteAddr方法

论坛徽章:
18
巳蛇
日期:2014-12-03 08:27:5115-16赛季CBA联赛之吉林
日期:2016-04-18 15:24:24qiaoba
日期:2016-06-17 17:41:1615-16赛季CBA联赛之八一
日期:2016-06-20 15:13:1415-16赛季CBA联赛之广夏
日期:2016-06-29 10:38:28极客徽章
日期:2016-12-07 14:03:4015-16赛季CBA联赛之吉林
日期:2017-03-06 13:47:55
7 [报告]
发表于 2009-09-29 14:29 |只看该作者
原帖由 jhsea3do 于 2009-9-29 10:17 发表
用nginx proxy吧,很方便

加一个serveletwrapper,重载getRemoteAddr方法

nginx和tomcat比apache和tomcat怎么样,给讲讲吧,谢谢!
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP