zoukankan      html  css  js  c++  java
  • Apache Tomcat -8.0.45

    http://tomcat.apache.org/index.html

    The Apache Tomcat® software is an open source implementation of the Java Servlet, JavaServer Pages, Java Expression Language and Java WebSocket technologies. The Java Servlet, JavaServer Pages, Java Expression Language and Java WebSocket specifications are developed under the Java Community Process.

    The Apache Tomcat software is developed in an open and participatory environment and released under the Apache License version 2. The Apache Tomcat project is intended to be a collaboration of the best-of-breed developers from around the world. We invite you to participate in this open development project. To learn more about getting involved, click here.

    Apache Tomcat software powers numerous large-scale, mission-critical web applications across a diverse range of industries and organizations. Some of these users and their stories are listed on the PoweredBy wiki page.

    Apache Tomcat, Tomcat, Apache, the Apache feather, and the Apache Tomcat project logo are trademarks of the Apache Software Foundation.

    http://tomcat.apache.org/download-80.cgi


    安装教程:http://blog.csdn.net/wsad_hjk/article/details/27374753

    startup 正常

    shutdown 关不了。。。

    【解决方案】

    cmd环境:进入到C:Program Filesapache-tomcat-8.0.45in目录下,命令都正常。

    win环境:在C:Program Filesapache-tomcat-8.0.45in目录下,直接点击 startup.bat, shutdown.bat


    在地址栏输入http://localhost:8080/,回车,能进入到Tomcat自带的Web页面,表明Tomcat服务在正常工作。

    解压版的tomcat默认是没有账号和密码的,所以不能再首页登陆的

    设置账号和密码的方法:

    在conf文件夹下的tomcat-users.xml文件中修改,在其中加入以下代码:

      <role rolename="manager-gui"/>
      <role rolename="admin-gui"/>
      <user username="yun" password="yun123" roles="manager-gui,admin-gui"/>

    ref:http://blog.csdn.net/u014482758/article/details/41827885

  • 相关阅读:
    学习 TList 类的实现[1]
    Dll 使用 PChar 参数的小例子
    学习使用资源文件[11]
    【转载】OGRE 内存管理
    【转载】Ogre的内存分配策略
    【转载】.NET面试题系列[0]
    【转载】深入探讨透视投影坐标变换
    【转载】四元数-Quaterion
    【转载】齐次坐标
    【转载】深入研究Windows内部原理绝对经典的资料
  • 原文地址:https://www.cnblogs.com/hbuwyg/p/7191301.html
Copyright © 2011-2022 走看看