我已经复印了样品。在Tomcat的webapps目录下,我可以访问localhost:8080。
Tomcat如何部署,需要在浏览器中打开吗?如何访问该应用程序?
我已经复印了样品。在Tomcat的webapps目录下,我可以访问localhost:8080。
Tomcat如何部署,需要在浏览器中打开吗?如何访问该应用程序?
您可以从http://localhost:8080/sample访问您的应用程序
war文件的部署或重新部署在默认情况下是自动的——在复制/覆盖文件示例之后。War,检查你的webapps文件夹中提取的文件夹示例。
如果不能正常打开,请检查日志文件(例如tomcat/logs/catalina.out),查看是否存在部署问题。
In addition to the ways already mentioned (dropping the war-file directly into the webapps-directory), if you have the Tomcat Manager -application installed, you can deploy war-files via browser too. To get to the manager, browse to the root of the server (in your case, localhost:8080), select "Tomcat Manager" (at this point, you need to know username and password for a Tomcat-user with "manager"-role, the users are defined in tomcat-users.xml in the conf-directory of the tomcat-installation). From the opening page, scroll downwards until you see the "Deploy"-part of the page, where you can click "browse" to select a WAR file to deploy from your local machine. After you've selected the file, click deploy. After a while the manager should inform you that the application has been deployed (and if everything went well, started).
以下是来自Tomcat 7文档页面的更长的操作说明和其他说明。
有两种方法:
您可以进行热部署(热部署意味着在服务器运行/启动时进行部署)。 或者您可以进行冷部署(冷部署意味着在服务器停止时进行部署)。
只需使用tomcat管理控制台进行控制台部署,或者简单地复制并粘贴应用程序到服务器tomcat_home目录的webapp文件夹中。
注意:如果您的war文件大小超过52 MB(默认配置值), 你需要在你的webapp文件夹的Manager应用程序的web.xml文件中做两个小的修改(在安装服务器时,默认由Apache tomcat提供Manager应用程序)。
Go to the web.xml of the manager application (for instance it could be under /tomcat7/webapps/manager/WEB-INF/web.xml. Increase the max-file-size and max-request-size values in web.xml file: <multipart-config> <!– 50MB max –> <max-file-size>52428800</max-file-size> <max-request-size>52428800</max-request-size> <file-size-threshold>0</file-size-threshold> </multipart-config> Increase the size by putting the values for <max-file-size> and <max-request-size> according to your requirement.
这对我来说很管用:
在本地创建war文件(mysite.war)。 在本地将它重命名为。war以外的东西,比如mysite.www 在tomcat仍然运行的情况下,上传mysite。WWW到webapps目录。 上传完成后,删除之前版本的mysite.war 列出目录,等待目录/mysite消失。 重命名mysite。WWW是神秘的。战争 列出目录,等待新的/mysite被创建。
如果在tomcat仍在运行的情况下,尝试将新文件作为war文件上传,它将尝试在所有文件就绪之前对其进行扩展。它会失败。既然失败了,它就不会再尝试了。因此,上传一个www文件,然后重命名它,允许在tomcat注意到它之前呈现整个war文件。
提示,不要忘记检查war文件的所有者是tomcat(使用chown)
手动步骤- Windows
复制.war文件(例如:prj.war)到%CATALINA_HOME%\webapps(例如:C:\tomcat\webapps) 运行% CATALINA_HOME % \ bin \ startup.bat 您的.war文件将自动提取到具有相同名称(没有扩展名)的文件夹(例如:prj) 转到%CATALINA_HOME%\conf\server.xml,并获取HTTP协议的端口。<连接器端口="8080"…/ >。缺省值为8080。 访问以下网址: (<协议>:/ / localhost: <端口> /文件夹/ resourceName (例如:localhost: 8080 /文件夹/ resourceName)
不要尝试访问没有资源名的URL,因为如果没有像index.html这样的文件,或者如果在web.xml中没有像“/”或“/*”这样的URL模式,它将不起作用。
可用的主路径在这里:[<protocol>://]localhost:<port>/manager/html(例如:http://localhost:8080/manager/html),它们在“Running”列上有true。
使用UI管理器:
Go to [<protocol>://]localhost:<port>/manager/html/ (usually localhost:8080/manager/html/) This is also achievable from [<protocol>://]localhost:<port> > Manager App) If you get: 403 Access Denied go to %CATALINA_HOME%\conf\tomcat-users.xml and check that you have enabled a line like this: <user username="tomcat" password="tomcat" roles="tomcat,role1,manager-gui"/> In the Deploy section, WAR file to deploy subsection, click on Browse.... Select the .war file (E.g.: prj.war) > click on Deploy. In the Applications section, you can see the name of your project (E.g.: prj).
步骤1。首先到tomcat webapps文件夹并粘贴它
步骤2。进入tomcat->bin文件夹,单击startup.bat启动tomcat
步骤3。去浏览器写localhost:端口/项目名等。Localhost:8080/pos(这里我的tomcat运行在端口8080上)
做……
请执行以下步骤:
停止Tomcat 右键点击项目,点击“清洁和构建” 转到你的项目目录和Dist文件夹内,你会得到你复制到tomcat上的war文件 webApp目录 启动tomcat 自动战争文件提取和运行您的项目
我按照下面链接的说明,它对我有用。 http://www.coderanch.com/t/487178/Tomcat/war-file-show-load
停止Tomcat 删除“tomcat/logs”目录下的所有日志和“tomcat/conf/Catalina/localhost”目录下的所有文件 从tomact/webapps中删除war文件和它创建的目录(如果有的话) 启动Tomcat 在查看日志时,再次将war文件复制到webapps目录
在此之后,请密切关注catalina.xxxx-xx-xx.log以找出问题。
如果你在linux中使用apt-get安装了tomcat7,那么将你的应用部署到/var/lib/tomcat7/webapps/
eg.
sudo service tomcat7 stop
mvn clean package
sudo cp target/DestroyTheWorldWithPeace.war /var/lib/tomcat7/webapps/
#you might also want to make sure war file has permission (`777` not just `+x`)
sudo service tomcat7 start
另外,继续跟踪tomcat日志,以便您可以验证应用程序实际上正在与tomcat和平共处。
tail -f /var/lib/tomcat7/logs/catalina.out
部署的应用程序应该出现在http://172.16.35.155:8080/manager/html中
为了在tomcat上部署war文件, 请遵循以下步骤:
停止tomcat。powershell - >服务。msc->OK->Apache Tomcat 8.5->stop(在左侧)。
把。war文件放在E:\Tomcat_Installation\webapps文件夹中,也就是Put。战争(。战争只是一个例子)
启动tomcat后(启动tomcat powershell->服务)。msc - >确定- > Apache Tomcat 8.5 - >开始)
你会在E:\Tomcat_Installation\webapps**put**中得到一个文件夹
通过这种方式,您可以在Apache Tomcat中部署war文件。
应用程序名称进入tomcat部署URL的上下文中, 如。http://localhost applicationName。 如果您的应用程序名称很简单,那么它应该是http://localhost:8080/sample。
默认情况下,Port是8080,但是如果你想改变它,或者想知道tomcat运行的端口,只需到<tomcat-apache-dir>/conf/server.xml中的server.xml文件,在那里你可以找到Port和change。 如。<连接器端口="8080" redirectPort="8443" connectionTimeout="20000" protocol="HTTP/1.1"/>
如果出现任何错误,检查日志文件(例如<tomcat-apache-dir>/logs/catalina.out)