teratail header banner
teratail header banner
質問するログイン新規登録

質問編集履歴

3

2018/02/20 08:55

投稿

YOHEY-WADAMI
YOHEY-WADAMI

スコア8

title CHANGED
File without changes
body CHANGED
@@ -1,3 +1,5 @@
1
+ ーー追記しました。
2
+
1
3
  ![イメージ説明](aa6e0090cee746520e32fc88105a4870.png)
2
4
  このようにインストーラを用いていないので unz.hori 様が添付いただけたユーザー名、パスワードが特に設定するところがないのですがその場合はユーザー名、パスワードはないと認識していました。認識が間違っているでしょうか?
3
5
  お願いします。

2

tomcatのDL方法

2018/02/20 08:54

投稿

YOHEY-WADAMI
YOHEY-WADAMI

スコア8

title CHANGED
File without changes
body CHANGED
@@ -1,3 +1,7 @@
1
+ ![イメージ説明](aa6e0090cee746520e32fc88105a4870.png)
2
+ このようにインストーラを用いていないので unz.hori 様が添付いただけたユーザー名、パスワードが特に設定するところがないのですがその場合はユーザー名、パスワードはないと認識していました。認識が間違っているでしょうか?
3
+ お願いします。
4
+ ーーーーーーーーーーーーーーーーーー
1
5
  すみません、初めての投稿で要領を心得ていません。申し訳ありません。
2
6
 
3
7
  今回tomcatの運用をしたいのです。

1

tomcat-users.xmlを追記しました。

2018/02/20 08:53

投稿

YOHEY-WADAMI
YOHEY-WADAMI

スコア8

title CHANGED
File without changes
body CHANGED
@@ -15,4 +15,56 @@
15
15
  「ユーザー認証、ユーザー名とパスワード」という表示が出ます。
16
16
  心当たりのあるものは入れてみたのですが何度やってもtomcatのマスコットの画面に行くことができません。
17
17
 
18
- 不足している情報がありましたら追記させていただきますのでどうかお力をお貸しください。宜しくお願い致します。
18
+ 不足している情報がありましたら追記させていただきますのでどうかお力をお貸しください。宜しくお願い致します。
19
+
20
+
21
+ xmlを追記です。
22
+ ```ここに言語を入力
23
+ <?xml version="1.0" encoding="UTF-8"?>
24
+ <!--
25
+ Licensed to the Apache Software Foundation (ASF) under one or more
26
+ contributor license agreements. See the NOTICE file distributed with
27
+ this work for additional information regarding copyright ownership.
28
+ The ASF licenses this file to You under the Apache License, Version 2.0
29
+ (the "License"); you may not use this file except in compliance with
30
+ the License. You may obtain a copy of the License at
31
+
32
+ http://www.apache.org/licenses/LICENSE-2.0
33
+
34
+ Unless required by applicable law or agreed to in writing, software
35
+ distributed under the License is distributed on an "AS IS" BASIS,
36
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
37
+ See the License for the specific language governing permissions and
38
+ limitations under the License.
39
+ -->
40
+ <tomcat-users xmlns="http://tomcat.apache.org/xml"
41
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
42
+ xsi:schemaLocation="http://tomcat.apache.org/xml tomcat-users.xsd"
43
+ version="1.0">
44
+ <role rolename="manager-gui"/>
45
+ <user username="admin" password="admin" roles="manager-gui"/>
46
+ <!--
47
+ NOTE: By default, no user is included in the "manager-gui" role required
48
+ to operate the "/manager/html" web application. If you wish to use this app,
49
+ you must define such a user - the username and password are arbitrary. It is
50
+ strongly recommended that you do NOT use one of the users in the commented out
51
+ section below since they are intended for use with the examples web
52
+ application.
53
+ -->
54
+ <!--
55
+ NOTE: The sample user and role entries below are intended for use with the
56
+ examples web application. They are wrapped in a comment and thus are ignored
57
+ when reading this file. If you wish to configure these users for use with the
58
+ examples web application, do not forget to remove the <!.. ..> that surrounds
59
+ them. You will also need to set the passwords to something appropriate.
60
+ -->
61
+ <!--
62
+ <role rolename="tomcat"/>
63
+ <role rolename="role1"/>
64
+ <user username="tomcat" password="<must-be-changed>" roles="tomcat"/>
65
+ <user username="both" password="<must-be-changed>" roles="tomcat,role1"/>
66
+ <user username="role1" password="<must-be-changed>" roles="role1"/>
67
+ -->
68
+ </tomcat-users>
69
+
70
+ ```