JVM系列學習(三):Tomcat性能監控與調優

Tomcat性能監控與調優

tomat遠程debug :JDWP協議及實現

  1. 配置文件

    • vim /bin/startup.sh
    #!/bin/sh
    
    # Licensed to the Apache Software Foundation (ASF) under one or more
    # contributor license agreements.  See the NOTICE file distributed with
    # this work for additional information regarding copyright ownership.
    # The ASF licenses this file to You 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.
    
    # -----------------------------------------------------------------------------
    # Start Script for the CATALINA Server
    # -----------------------------------------------------------------------------
    
    # Better OS/400 detection: see Bugzilla 31132
    os400=false
    case "`uname`" in
    OS400*) os400=true;;
    esac
    
    # resolve links - $0 may be a softlink
    PRG="$0"
    
    while [ -h "$PRG" ] ; do
      ls=`ls -ld "$PRG"`
      link=`expr "$ls" : '.*-> \(.*\)$'`
      if expr "$link" : '/.*' > /dev/null; then
        PRG="$link"
      else
        PRG=`dirname "$PRG"`/"$link"
      fi
    done
    
    PRGDIR=`dirname "$PRG"`
    EXECUTABLE=catalina.sh
    
    # Check that target executable exists
    if $os400; then
      # -x will Only work on the os400 if the files are:
      # 1. owned by the user
      # 2. owned by the PRIMARY group of the user
      # this will not work if the user belongs in secondary groups
      eval
    else
      if [ ! -x "$PRGDIR"/"$EXECUTABLE" ]; then
        echo "Cannot find $PRGDIR/$EXECUTABLE"
        echo "The file is absent or does not have execute permission"
        echo "This file is needed to run this program"
        exit 1
      fi
    fi
    
    exec "$PRGDIR"/"$EXECUTABLE" jpda start "$@" ##在這裏添加jpda
    
    • 還有一個配置文件 vim /bin/catalina.sh

      搜索JPDA 貼出部分代碼
      
      #   JPDA_OPTS       (Optional) Java runtime options used when the "jpda start"
      #                   command is executed. If used, JPDA_TRANSPORT, JPDA_ADDRESS,
      #                   and JPDA_SUSPEND are ignored. Thus, all required jpda
      #                   options MUST be specified. The default is:
      #
      #                   -agentlib:jdwp=transport=$JPDA_TRANSPORT,
      #                       address=$JPDA_ADDRESS,server=y,suspend=$JPDA_SUSPEND
      
      
      if [ "$1" = "jpda" ] ; then
        if [ -z "$JPDA_TRANSPORT" ]; then
          JPDA_TRANSPORT="dt_socket"
        fi
        if [ -z "$JPDA_ADDRESS" ]; then
          ##JPDA_ADDRESS="localhost:8000" 默認8000端口
          JPDA_ADDRESS="54321"這裏可以修改自己要的端口
        fi
        if [ -z "$JPDA_SUSPEND" ]; then
          JPDA_SUSPEND="n"
        fi
        if [ -z "$JPDA_OPTS" ]; then
          JPDA_OPTS="-agentlib:jdwp=transport=$JPDA_TRANSPORT,address=$JPDA_ADDRESS,server=y,suspend=$JPDA_SUSPEND"
        fi
        CATALINA_OPTS="$JPDA_OPTS $CATALINA_OPTS"
        shift
      fi
      
    • IDEA中添加Remote,輸入IP地址和改的端口號

tomcat-manager監控

  1. 文檔:{tomcat}/webapps/docs/manager-howto.html

    • conf/tomcat-users.xml 添加用戶

      <?xml version="1.0" encoding="UTF-8"?>
      <!--
        Licensed to the Apache Software Foundation (ASF) under one or more
        contributor license agreements.  See the NOTICE file distributed with
        this work for additional information regarding copyright ownership.
        The ASF licenses this file to You 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.
      -->
      <tomcat-users xmlns="http://tomcat.apache.org/xml"
                    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                    xsi:schemaLocation="http://tomcat.apache.org/xml tomcat-users.xsd"
                    version="1.0">
      <!--
        NOTE:  By default, no user is included in the "manager-gui" role required
        to operate the "/manager/html" web application.  If you wish to use this app,
        you must define such a user - the username and password are arbitrary. It is
        strongly recommended that you do NOT use one of the users in the commented out
        section below since they are intended for use with the examples web
        application.
      -->
      <!--
        NOTE:  The sample user and role entries below are intended for use with the
        examples web application. They are wrapped in a comment and thus are ignored
        when reading this file. If you wish to configure these users for use with the
        examples web application, do not forget to remove the <!.. ..> that surrounds
        them. You will also need to set the passwords to something appropriate.
      -->
      <!--
        <role rolename="tomcat"/>
        <role rolename="role1"/>
        <user username="tomcat" password="<must-be-changed>" roles="tomcat"/>
        <user username="both" password="<must-be-changed>" roles="tomcat,role1"/>
        <user username="role1" password="<must-be-changed>" roles="role1"/>
      -->
        <role rolename="tomcat"/>
        <role rolename="manager-status"/>
        <role rolename="manager-gui"/>
        <user username="tomcat" password="123456" roles="tomcat,manager-gui,manager-status"/> ##添加用戶
      </tomcat-users>
      
    • conf/Catalina/localhost/manager.xml配置允許的遠程連接,沒有就新建文件夾

      <Context privileged="true" antiResourceLocking="false"
               docBase="${catalina.home}/webapps/manager">
        <Valve className="org.apache.catalina.valves.RemoteAddrValve"
               allow="127\.0\.0\.1" />
      </Context>
      
    • 重啓訪問127.0.0.7:8080/manager進入界面操作

psi-probe監控:github地址

  1. git clone https://github.com/psi-probe/psi-probe.git
  2. mvn clean package -Dmaven.test.skip
  3. 打成的war包單獨放在${Tomcat}/webapps目錄下
  4. 同樣要像上面一樣配置tomcat-users.xml,manager.xml的文件
  5. 重啓訪問127.0.0.1:8080/probe
  6. 進入頁面開始查看
    • 應用的統計信息
    • 請求,session,jsp預編譯
    • Threads:線程的內容,相當於jstack
    • System:系統的內存情況
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章