首页 > 代码库 > 给新手--安装tomcat后用户名和密码设置以及项目怎么部署在tomcat服务器上

给新手--安装tomcat后用户名和密码设置以及项目怎么部署在tomcat服务器上

安装后tomcat服务器后,登陆首先就是让输入用户名和密码,可是我们在安装tomcat的过程中好像没有让设置用户名和密码,这时候可能有人就抓狂了,还有的人是突然忘记了用户名和密码,对于出现这种情况该怎么去解决呢?

不慌,tomcat安装的过程中是没有让用户设置用户名和密码,因为这个工作是需要用户自己在配置文件中自己书写的。过程如下:

以我安装tomcat的目录为例  D:\Program Files\apache-tomcat-6.0.35

进入该目录找到conf文件下,找到tomcat-users.xml文件,用记事本打开它



然后在<tomcat-users></tomcat-users>中间添加<user username="" password="" roles="manager"/>

<tomcat-users>
<!--
  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.
-->
<!--
  NOTE:  The sample user and role entries below are wrapped in a comment
  and thus are ignored when reading this file. Do not forget to remove
  <!.. ..> that surrounds them.
-->
<!--
  <role rolename="tomcat"/>
  <role rolename="role1"/>
  <user username="tomcat" password="tomcat" roles="tomcat"/>
  <user username="both" password="tomcat" roles="tomcat,role1"/>
  <user username="role1" password="tomcat" roles="role1"/>
-->
<user username="" password="" roles="manager"/> 
</tomcat-users>

上述代码中引号可以自己设置用户名和密码,如果按照我上面所写的代表是没有用户名和密码

这下子大家都清楚了么?

安装好了tomcat,下面就是怎么将自己的项目部署到tomcat上了

首先在MyEclipse中将tomcat设置好  设置的方法和地方如下图所示


分别设置JDK  加载方式 Paths不用设置


设置好后,将自己的项目部署到tomcat服务器上,可以利用IDE MyEclipse来部署,或者直接手动在server.xml中自动部署

打开刚才的tomcat安装的conf文件夹 找到server.xml  打开在其中加下如下代码即可

<Context path="/struts2" docBase="D:\MyEclipse 10 WorkSpace\struts2\WebRoot" reloadable="true" />

其中 struts2是项目名称  docBase是该项目的路径  reloadable表示当修改配置文件等服务器自动重新加载


这样,启动服务器即可。

给新手--安装tomcat后用户名和密码设置以及项目怎么部署在tomcat服务器上