<?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-usersxmlns="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"> <!-- 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.
Built-in Tomcat manager roles: - manager-gui - allows access to the HTML GUI and the status pages - manager-script - allows access to the HTTP API and the status pages - manager-jmx - allows access to the JMX proxy and the status pages - manager-status - allows access to the status pages only
The users below are wrapped in a comment and are therefore ignored. If you wish to configure one or more of these users for use with the manager web application, do not forget to remove the <!.. ..> that surrounds them. You will also need to set the passwords to something appropriate. --> <!-- <user username="admin" password="<must-be-changed>" roles="manager-gui"/> <user username="robot" password="<must-be-changed>" roles="manager-script"/> --> <!-- 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. -->
$ vim /usr/local/tomcat/webapps/manager/META-INF/context.xml # 找到 allow 那行,变成以下内容 allow="127\.\d+\.\d+\.\d+|::1|0:0:0:0:0:0:0:1|192.168.100.*" />
# 配置成功之后启动 tomcat $ /usr/local/tomcat/bin/startup.sh Using CATALINA_BASE: /usr/local/tomcat Using CATALINA_HOME: /usr/local/tomcat Using CATALINA_TMPDIR: /usr/local/tomcat/temp Using JRE_HOME: /usr/local/java/jdk1.8.0_431 Using CLASSPATH: /usr/local/tomcat/bin/bootstrap.jar:/usr/local/tomcat/bin/tomcat-juli.jar Using CATALINA_OPTS: Tomcat started.
验证
登录网址 http://192.168.100.131:8080
然后找到 “Managing Tomcat” 点击 “manager webapp”
然后输入 tomcat 的用户名和密码
完成验证后,成功进入 manager 平台,说明 tomcat 各项配置均配置成功
3.5 安装 maven(在 Jenkins 上)
在 /usr/local 目录下,执行以下操作
1 2 3 4 5 6 7 8 9 10 11 12 13 14
# 下载 $ cd /usr/local $ curl -O https://dlcdn.apache.org/maven/maven-3/3.8.8/binaries/apache-maven-3.8.8-bin.tar.gz
'[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.11.0:compile (default-compile) on project common: Fatal error compiling: 错误: 无效的目标发行版:21 -> [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 [ERROR] [ERROR] After correcting the problems, you can resume the build with the command [ERROR] mvn <goals> -rf :common [JENKINS] Archiving /var/lib/jenkins/workspace/test_java/admin-web/pom.xml to com.zrlog/admin-web/3.1.4-SNAPSHOT/admin-web-3.1.4-SNAPSHOT.pom [JENKINS] Archiving /var/lib/jenkins/workspace/test_java/data/pom.xml to com.zrlog/data/3.1.4-SNAPSHOT/data-3.1.4-SNAPSHOT.pom [JENKINS] Archiving /var/lib/jenkins/workspace/test_java/admin-token/pom.xml to com.zrlog/admin-token/3.1.4-SNAPSHOT/admin-token-3.1.4-SNAPSHOT.pom [JENKINS] Archiving /var/lib/jenkins/workspace/test_java/blog-web/pom.xml to com.zrlog/blog-web/3.1.4-SNAPSHOT/blog-web-3.1.4-SNAPSHOT.pom [JENKINS] Archiving /var/lib/jenkins/workspace/test_java/common/pom.xml to com.zrlog/common/3.1.4-SNAPSHOT/common-3.1.4-SNAPSHOT.pom [JENKINS] Archiving /var/lib/jenkins/workspace/test_java/pom.xml to com.zrlog/zrlog/3.1.4-SNAPSHOT/zrlog-3.1.4-SNAPSHOT.pom [JENKINS] Archiving /var/lib/jenkins/workspace/test_java/service/pom.xml to com.zrlog/service/3.1.4-SNAPSHOT/service-3.1.4-SNAPSHOT.pom [JENKINS] Archiving /var/lib/jenkins/workspace/test_java/package-web/pom.xml to com.zrlog/package-web/3.1.4-SNAPSHOT/package-web-3.1.4-SNAPSHOT.pom [JENKINS] Archiving /var/lib/jenkins/workspace/test_java/web/pom.xml to com.zrlog/web/3.1.4-SNAPSHOT/web-3.1.4-SNAPSHOT.pom channel stopped Finished: FAILURE