taowayi 发表于 2013-1-31 02:09:51

Tomcat 启动和关闭

 
Tomcat 启动和关闭:
 
第一步骤:/etc/init.d 下新建 vi tomcat6 ,文件内容:
 
-----------------------------------------------------------------------------------------------
 
#!/bin/bash
##############################################################################
#
#   Copyright 2004 The Apache Software Foundation.
#
#   Licensed under the Apache License, Version 2.0 (the "License");
#   you may not use this file except in compliance with the License.
#   You may obtain a copy of the License at
#
#       http://www.apache.org/licenses/LICENSE-2.0
#
#   Unless required by applicable law or agreed to in writing, software
#   distributed under the License is distributed on an "AS IS" BASIS,
#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#   See the License for the specific language governing permissions and
#   limitations under the License.
##############################################################################
JAVA_HOME=/opt/jdk1.5.0_16
export JAVA_HOME
case "$1" in
  start)
    #
    # Start Tomcat
    echo "start tomcat60"
    /opt/tomcat6.0.20/bin/startup.sh
    ;;
 
  stop)
    #
    # Stop Tomcat
    #
    echo "stop tomcat60"
    /opt/tomcat6.0.20/bin/shutdown.sh
   ;;
 
  *)
    echo "Usage tomcat60 start/stop"
    exit 1;;
esac
 
-----------------------------------------------------------------------------------------------
注意:startup.sh 和 shutdown.sh 路径 , JAVA_HOME 即 JDK 路径。
使用命令: 启动:/etc/init.d/tomcat6 start  停止:/etc/init.d/tomcat6 stop 。
-----------------------------------------------------------------------------------------------
 
第二步骤: 查看启动方式:
 
# cat /etc/inittab
 
#
# inittab       This file describes how the INIT process should set up
#               the system in a certain run-level.
#
# Author:       Miquel van Smoorenburg, <miquels@drinkel.nl.mugnet.org>
#               Modified for RHS Linux by Marc Ewing and Donnie Barnes
#
 
# Default runlevel. The runlevels used by RHS are:
#   0 - halt (Do NOT set initdefault to this)
#   1 - Single user mode
#   2 - Multiuser, without NFS (The same as 3, if you do not have networking)
#   3 - Full multiuser mode
#   4 - unused
#   5 - X11
#   6 - reboot (Do NOT set initdefault to this)
#
id:3:initdefault:
 
# System initialization.
si::sysinit:/etc/rc.d/rc.sysinit
 
l0:0:wait:/etc/rc.d/rc 0
l1:1:wait:/etc/rc.d/rc 1
l2:2:wait:/etc/rc.d/rc 2
l3:3:wait:/etc/rc.d/rc 3
l4:4:wait:/etc/rc.d/rc 4
l5:5:wait:/etc/rc.d/rc 5
l6:6:wait:/etc/rc.d/rc 6
 
# Trap CTRL-ALT-DELETE
ca::ctrlaltdel:/sbin/shutdown -t3 -r now
 
# When our UPS tells us power has failed, assume we have a few minutes
# of power left.  Schedule a shutdown for 2 minutes from now.
# This does, of course, assume you have powerd installed and your
# UPS connected and working correctly.
pf::powerfail:/sbin/shutdown -f -h +2 "Power Failure; System Shutting Down"
 
# If power was restored before the shutdown kicked in, cancel it.
pr:12345:powerokwait:/sbin/shutdown -c "Power Restored; Shutdown Cancelled"
 
 
# Run gettys in standard runlevels
1:2345:respawn:/sbin/mingetty tty1
2:2345:respawn:/sbin/mingetty tty2
3:2345:respawn:/sbin/mingetty tty3
4:2345:respawn:/sbin/mingetty tty4
5:2345:respawn:/sbin/mingetty tty5
6:2345:respawn:/sbin/mingetty tty6
 
# Run xdm in runlevel 5
 
-----------------------------------------------------------------------------------------------
 
 
第三步骤:如上文本linux默认启动: id:3:initdefault: 使用 # 3 - Full multiuser mode 模式启动。
 
 # ln -s /etc/init.d/Tomcat6 S90Tomcat6
 
-----------------------------------------------------------------------------------------------
注意:Tomcat6 第90位启动,搁在后面保证在数据库启动后启动。
-----------------------------------------------------------------------------------------------
页: [1]
查看完整版本: Tomcat 启动和关闭