- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的环境:Windows 8.1 -> Tomcat 7.0.59 -> Maven 3.2.5。
我有一个可以编译的现成项目,获取 war 文件,复制到 %TOMCAT_HOME%\webapps,启动 Tomcat 并运行我的应用程序,一切正常。但我想要设置自动部署。我在我的 pom.xml 中添加了一个插件:
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>${tomcat.version}</version>
<configuration>
<url>http://localhost:8080/manager/html</url>
<server>MyTomcat</server>
<path>/foxrestful</path>
</configuration>
</plugin>
然后在 %TOMCAT_HOME%\conf\tomcat-users.xml 我添加:
<?xml version='1.0' encoding='utf-8'?>
<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">
<role rolename="manager-gui"/>
<role rolename="admin-gui"/>
<role rolename="manager-script"/>
<role rolename="manager"/>
<user username="admin" password="11qqsd" roles="admin-gui,admin,manager,manager-gui,manager-script,manager-jmx,manager-status"/>
</tomcat-users>
在 %MAVEN_HOME\conf\settings.xml% 和 C:\Users\%USERNAME%\.m2\settings.xml 中:
<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<pluginGroups>
</pluginGroups>
<proxies>
</proxies>
<servers>
<server>
<id>MyTomcat</id>
<username>admin</username>
<password>11qqsd</password>
</server>
</servers>
<mirrors>
</mirrors>
<profiles>
</profiles>
</settings>
然后我在我的 pom.xml 文件中添加一个 Maven Tomcat 插件:
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<url>http://localhost:8080/manager/html</url>
<server>MyTomcat</server>
<path>/foxrestful</path>
</configuration>
</plugin>
为了检查我的设置,我启动了 Tomcat,打开 http://localhost:8080/manager/html ,输入登录名:admin,密码:11qqsd,Tomcat 会显示管理器应用程序面板。这是工作!
当我在控制台中执行时
mvn tomcat7:deploy
我得到:
[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building foxrestful 1.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] >>> tomcat7-maven-plugin:2.2:deploy (default-cli) > package @ foxrestful >>>
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ foxrestful ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO]
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ foxrestful ---
[INFO] Nothing to compile - all classes are up to date
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ foxrestful ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory e:\Compilers\Projects\Java\JerseyRESTful\src\test\resources
[INFO]
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ foxrestful ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ foxrestful ---
[INFO] No tests to run.
[INFO]
[INFO] --- maven-war-plugin:2.6:war (default-war) @ foxrestful ---
[INFO] Packaging webapp
[INFO] Assembling webapp [foxrestful] in [e:\Compilers\Projects\Java\JerseyRESTful\target\foxrestful]
[INFO] Processing war project
[INFO] Copying webapp resources [e:\Compilers\Projects\Java\JerseyRESTful\src\main\webapp]
[INFO] Webapp assembled in [170 msecs]
[INFO] Building war: e:\Compilers\Projects\Java\JerseyRESTful\target\foxrestful.war
[INFO]
[INFO] <<< tomcat7-maven-plugin:2.2:deploy (default-cli) < package @ foxrestful <<<
[INFO]
[INFO] --- tomcat7-maven-plugin:2.2:deploy (default-cli) @ foxrestful ---
[INFO] Deploying war to http://localhost:8080/foxrestful
Uploading: http://localhost:8080/manager/html/deploy?path=%2Ffoxrestful
2/11111 KB
4/11111 KB
6/11111 KB
8/11111 KB
10/11111 KB
12/11111 KB
14/11111 KB
16/11111 KB
18/11111 KB
20/11111 KB
22/11111 KB
24/11111 KB
26/11111 KB
28/11111 KB
30/11111 KB
32/11111 KB
34/11111 KB
36/11111 KB
38/11111 KB
40/11111 KB
42/11111 KB
44/11111 KB
46/11111 KB
48/11111 KB
50/11111 KB
52/11111 KB
54/11111 KB
56/11111 KB
58/11111 KB
60/11111 KB
62/11111 KB
64/11111 KB
66/11111 KB
68/11111 KB
70/11111 KB
72/11111 KB
74/11111 KB
76/11111 KB
78/11111 KB
80/11111 KB
82/11111 KB
84/11111 KB
86/11111 KB
88/11111 KB
90/11111 KB
92/11111 KB
94/11111 KB
96/11111 KB
98/11111 KB
100/11111 KB
102/11111 KB
104/11111 KB
106/11111 KB
108/11111 KB
110/11111 KB
112/11111 KB
114/11111 KB
116/11111 KB
118/11111 KB
120/11111 KB
122/11111 KB
124/11111 KB
126/11111 KB
128/11111 KB
130/11111 KB
132/11111 KB
134/11111 KB
136/11111 KB
138/11111 KB
140/11111 KB
142/11111 KB
144/11111 KB
146/11111 KB
148/11111 KB
150/11111 KB
152/11111 KB
154/11111 KB
156/11111 KB
158/11111 KB
160/11111 KB
162/11111 KB
164/11111 KB
166/11111 KB
168/11111 KB
170/11111 KB
172/11111 KB
174/11111 KB
176/11111 KB
178/11111 KB
180/11111 KB
182/11111 KB
184/11111 KB
186/11111 KB
188/11111 KB
190/11111 KB
192/11111 KB
[INFO] I/O exception (java.net.SocketException) caught when processing request: Connection reset by peer: socket write error
[INFO] Retrying request
Uploading: http://localhost:8080/manager/html/deploy?path=%2Ffoxrestful
2/11111 KB
4/11111 KB
6/11111 KB
8/11111 KB
10/11111 KB
12/11111 KB
14/11111 KB
16/11111 KB
18/11111 KB
20/11111 KB
22/11111 KB
24/11111 KB
26/11111 KB
28/11111 KB
30/11111 KB
32/11111 KB
34/11111 KB
36/11111 KB
38/11111 KB
40/11111 KB
42/11111 KB
44/11111 KB
46/11111 KB
48/11111 KB
50/11111 KB
52/11111 KB
54/11111 KB
56/11111 KB
58/11111 KB
60/11111 KB
62/11111 KB
64/11111 KB
66/11111 KB
68/11111 KB
70/11111 KB
72/11111 KB
74/11111 KB
76/11111 KB
78/11111 KB
80/11111 KB
82/11111 KB
84/11111 KB
86/11111 KB
88/11111 KB
90/11111 KB
92/11111 KB
94/11111 KB
96/11111 KB
98/11111 KB
100/11111 KB
102/11111 KB
104/11111 KB
106/11111 KB
108/11111 KB
110/11111 KB
112/11111 KB
114/11111 KB
116/11111 KB
118/11111 KB
120/11111 KB
[INFO] I/O exception (java.net.SocketException) caught when processing request: Connection reset by peer: socket write error
[INFO] Retrying request
Uploading: http://localhost:8080/manager/html/deploy?path=%2Ffoxrestful
2/11111 KB
4/11111 KB
6/11111 KB
8/11111 KB
10/11111 KB
12/11111 KB
14/11111 KB
16/11111 KB
18/11111 KB
20/11111 KB
22/11111 KB
24/11111 KB
26/11111 KB
28/11111 KB
30/11111 KB
32/11111 KB
34/11111 KB
36/11111 KB
38/11111 KB
40/11111 KB
42/11111 KB
44/11111 KB
46/11111 KB
48/11111 KB
50/11111 KB
52/11111 KB
54/11111 KB
56/11111 KB
58/11111 KB
60/11111 KB
62/11111 KB
64/11111 KB
66/11111 KB
68/11111 KB
70/11111 KB
72/11111 KB
74/11111 KB
76/11111 KB
78/11111 KB
80/11111 KB
82/11111 KB
84/11111 KB
86/11111 KB
88/11111 KB
90/11111 KB
92/11111 KB
94/11111 KB
96/11111 KB
98/11111 KB
100/11111 KB
102/11111 KB
104/11111 KB
106/11111 KB
108/11111 KB
110/11111 KB
112/11111 KB
114/11111 KB
116/11111 KB
118/11111 KB
120/11111 KB
122/11111 KB
124/11111 KB
126/11111 KB
128/11111 KB
130/11111 KB
132/11111 KB
134/11111 KB
136/11111 KB
138/11111 KB
140/11111 KB
[INFO] I/O exception (java.net.SocketException) caught when processing request: Connection reset by peer: socket write error
[INFO] Retrying request
Uploading: http://localhost:8080/manager/html/deploy?path=%2Ffoxrestful
2/11111 KB
4/11111 KB
6/11111 KB
8/11111 KB
10/11111 KB
12/11111 KB
14/11111 KB
16/11111 KB
18/11111 KB
20/11111 KB
22/11111 KB
24/11111 KB
26/11111 KB
28/11111 KB
30/11111 KB
32/11111 KB
34/11111 KB
36/11111 KB
38/11111 KB
40/11111 KB
42/11111 KB
44/11111 KB
46/11111 KB
48/11111 KB
50/11111 KB
52/11111 KB
54/11111 KB
56/11111 KB
58/11111 KB
60/11111 KB
62/11111 KB
64/11111 KB
66/11111 KB
68/11111 KB
70/11111 KB
72/11111 KB
74/11111 KB
76/11111 KB
78/11111 KB
80/11111 KB
82/11111 KB
84/11111 KB
86/11111 KB
88/11111 KB
90/11111 KB
92/11111 KB
94/11111 KB
96/11111 KB
98/11111 KB
100/11111 KB
102/11111 KB
104/11111 KB
106/11111 KB
108/11111 KB
110/11111 KB
112/11111 KB
114/11111 KB
116/11111 KB
118/11111 KB
120/11111 KB
122/11111 KB
124/11111 KB
126/11111 KB
128/11111 KB
130/11111 KB
132/11111 KB
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 3.210 s
[INFO] Finished at: 2015-03-18T17:28:50+03:00
[INFO] Final Memory: 15M/210M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.tomcat.maven:tomcat7-maven-plugin:2.2:deploy (default-cli) on project foxrestful: Cannot invoke Tomcat manager: Connection reset by peer: socket write error -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
谁能告诉我我做错了什么?谢谢。
最佳答案
尝试使用 http://localhost:8080/manager/text代替 http://localhost:8080/manager/html
此外,用户不应同时被授予 manager-gui、manager-script 角色。
关于Maven Tomcat 插件 : can't deploy to server,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29124832/
我是 DevOps 的新手。我为刚刚在 Digital Oceans 上创建的 Kubernetes 集群编写了一个 deployment.yaml 文件。创建部署不断出现我现在无法解码的错误。这只是
我需要能够在 Red5 运行时进行部署。我知道的唯一解决方案是使用 WAR 文件并将其放在文件夹中:webapp。 还有其他办法吗? 我使用的是 Red 5 v0.8。我使用 Eclipse 3.4
我收到以下错误: Recycling (Waiting for role to start... Sites are being deployed. [2012-12-17T05:30:10Z]) R
使用 TeamCity 6.5,我试图弄清楚如果可能的话,如何为特定的构建运行设置手动部署。 我希望能够做的是运行已经构建和测试的 TeamCity(仅需要部署工件 - 这不是 Web 应用程序或站点
我看到一个范围为环境的编辑变量权限。但是,似乎谁负责设置项目,谁就会负责创建变量,而其他一些安全实体将只负责修改值,特别是安全值。这可能吗? 编辑:再补充一点,我想我是在根据项目变量集请求权限。只有拥
在我通过命令部署到我的服务器后: bin/dep deploy 在“releases ”文件夹中,我有名为喜欢的文件夹 1 , 2 , 3 , ... 我怎样才能把它改成时间戳,所以在部署命令之后我会
问题: 我有一个手动干预步骤,其中包含执行部署的人员要遵循的文本步骤。 我想传递目标服务器的名称,这样这个人就不需要查找目标服务器名称。 例如,如下所示,我需要将它们解压缩到目标服务器上的某个位置。
这是一个系统 Octopus 部署变量: #{Octopus.Action[Deploy To Server].Output.Package.InstallationDirectoryPath} 文本
我正在尝试在 Octopus Deploy 中设置部署。与许多其他开发人员一样,我通过迭代来做到这一点:调整步骤/脚本/包 -> 单击“部署” -> 检查结果 -> 如果不满意,则重新开始。在 Oct
在使用 Network Deployment 安装 WebSphere Application Server 时,节点是: 物理机 操作系统实例 一组独立于物理机或操作系统实例的逻辑 WAS 实例 最
我知道目前有一个 feature request对于这样的事情,但我希望使用当前版本(1.6)有某种解决方法 我们从 TFS 中的开发分支为我们的开发和测试环境构建,并从 TFS 中的发布分支为我们的
我正在尝试运行由 MSBuild 生成的 ProjectName.deply.cmd 当参数 /p:DeployOnBuild=True通过。参数“ComputerName”之一将作为 https:/
有时首选和/或需要在单个服务器上托管数十个应用程序。不是说这是“对”或“错”,我只是说它发生了。 此配置的缺点是出现错误消息Waiting for the script in task [TASK I
部署准备使用的 erlang 应用程序时我 不要希望用户 在上找到正确的 erl 版本 互联网。 安装 erl vm 解压缩并确定梁文件的位置(与应用程序一起) 阅读自述文件 修改任何看起来像配置文件
使用Next.js创建的app部署到netlify时,出现如下错误,部署失败。 ────────────────────────────────────────────────────────────
我有一个包含两个模块的项目:客户端和服务器。在父 pom.xml 中,我添加了部署阶段的信息,以便部署到本地目录: 4.0.0 org.my myTest 0.1 pom m
我们正在运行 OD 1.6。 我想使用 OD 变量来更改不在应用设置部分中的值,例如 session 状态提供程序。 我知道我可以为此使用转换,但作为一家公司,我们更喜欢使用 OD 变量而不是转换,因
Plesk Obsidian 提供 GIT 部署,我们正在尝试将其配置为类似于我们之前在 CPANEL 上的配置(我们最近从与 CPANEL 的共享帐户升级到与 Plesk 的 VPS - Plesk
我对这个主题进行了大量研究,但找不到任何端到端解决方案来使用 TFS 2010 实现“一次构建并部署多次”。 基本上我在想的是有一个构建定义,它将构建一个解决方案,其中包含多个要部署的项目(Web 应
我已经阅读了关于如何使用 pm2 的几个问题和想法。在 Windows 机器下,不管你信不信,我以前的机器运行得很好......然后我不得不重新格式化它并完全忘记了我以前做过的事情:( 我已经安装了
我是一名优秀的程序员,十分优秀!