LordYoda
Anmeldungsdatum: 15. Juni 2013
Beiträge: 225
|
Hallo Freunde, ich habe von der offiziellen Webseite das Programm (als zip) Tomcat heruntergeladen und wollte es starten.
Ich packte das Verzeichnis aus und wechselte mit dem Terminal in das Verzeichnis, um das Script zu aktivieren.
Tatsächlich erscheint nicht der erwartete Startvorgang im Terminal und das ganze ist mit localhost auch nicht erreichbar. Falls noch Infos fehlen, kann ich diese nachliefern. hier der Befehl: | work@work-TWH:~/Schreibtisch/apache-tomcat-8.0.9/bin$ sudo ./startup.sh
[sudo] Passwort für work:
Using CATALINA_BASE: /home/work/Schreibtisch/apache-tomcat-8.0.9
Using CATALINA_HOME: /home/work/Schreibtisch/apache-tomcat-8.0.9
Using CATALINA_TMPDIR: /home/work/Schreibtisch/apache-tomcat-8.0.9/temp
Using JRE_HOME: /usr
Using CLASSPATH: /home/work/Schreibtisch/apache-tomcat-8.0.9/bin/bootstrap.jar:/home/work/Schreibtisch/apache-tomcat-8.0.9/bin/tomcat-juli.jar
Tomcat started.
|
Ich freue mich auch eure Unterstützung.
- Bilder
|
Into_the_Pit
Ehemalige
Anmeldungsdatum: 25. Juni 2008
Beiträge: 9490
Wohnort: Bochum
|
Gibt es einen bestimmten Grund, warum Du tomcat nicht aus dem Repo nimmst?
|
LordYoda
(Themenstarter)
Anmeldungsdatum: 15. Juni 2013
Beiträge: 225
|
Weil ich es genau so gemacht habe, wie es im meinem Buch steht. warum sollte es auch nicht funktionieren, wenn es im Buch doch so steht? Wenn ich den Befehl "sudo ./startup.sh" eingebe, erreiche im Browser übrigens doch etwas. (Eine Fehlermeldung)
Im Browser gebe ich dann folgendes ein: localhost:8080 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724 | <!doctype html><html lang="en"><head><title>HTTP Status 500 – Internal Server Error</title><style type="text/css">H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}.line {height: 1px; background-color: #525D76; border: none;}</style></head><body><h1>HTTP Status 500 – Internal Server Error</h1><hr class="line" /><p><b>Type</b> Exception Report</p><p><b>Message</b> Unable to compile class for JSP: </p><p><b>Description</b> The server encountered an unexpected condition that prevented it from fulfilling the request.</p><p><b>Exception</b></p><pre>org.apache.jasper.JasperException: Unable to compile class for JSP:
An error occurred at line: [1] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
The type java.util.Map cannot be resolved. It is indirectly referenced from required .class files
An error occurred at line: [1] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
The type java.lang.Throwable cannot be resolved. It is indirectly referenced from required .class files
An error occurred at line: [1] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
The type java.util.Set cannot be resolved. It is indirectly referenced from required .class files
An error occurred at line: [1] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
The type java.lang.Exception cannot be resolved. It is indirectly referenced from required .class files
An error occurred at line: [1] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
The type java.io.IOException cannot be resolved. It is indirectly referenced from required .class files
An error occurred at line: [1] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
The type java.lang.Class cannot be resolved. It is indirectly referenced from required .class files
An error occurred at line: [1] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
The type java.lang.String cannot be resolved. It is indirectly referenced from required .class files
An error occurred at line: [1] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
The type java.lang.Long cannot be resolved. It is indirectly referenced from required .class files
An error occurred at line: [15] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
The hierarchy of the type index_jsp is inconsistent
An error occurred at line: [15] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
The hierarchy of the type index_jsp is inconsistent
An error occurred at line: [15] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
Implicit super constructor Object() is undefined for default constructor. Must define an explicit constructor
An error occurred at line: [15] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
The type index_jsp must implement the inherited abstract method JspSourceDependent.getDependants()
An error occurred at line: [15] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
The type index_jsp must implement the inherited abstract method JspSourceImports.getPackageImports()
An error occurred at line: [15] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
The type index_jsp must implement the inherited abstract method JspSourceImports.getClassImports()
An error occurred at line: [22] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
java.util.Map cannot be resolved to a type
An error occurred at line: [22] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
java.lang.String cannot be resolved to a type
An error occurred at line: [22] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
java.lang.Long cannot be resolved to a type
An error occurred at line: [24] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
java.util.Set cannot be resolved to a type
An error occurred at line: [24] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
java.lang.String cannot be resolved to a type
An error occurred at line: [26] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
java.util.Set cannot be resolved to a type
An error occurred at line: [26] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
java.lang.String cannot be resolved to a type
An error occurred at line: [29] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
_jspx_imports_packages cannot be resolved to a variable
An error occurred at line: [29] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
java.util.HashSet cannot be resolved to a type
An error occurred at line: [30] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
_jspx_imports_packages cannot be resolved
An error occurred at line: [31] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
_jspx_imports_packages cannot be resolved
An error occurred at line: [32] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
_jspx_imports_packages cannot be resolved
An error occurred at line: [33] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
_jspx_imports_classes cannot be resolved to a variable
An error occurred at line: [39] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
java.util.Map cannot be resolved to a type
An error occurred at line: [39] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
java.lang.String cannot be resolved to a type
An error occurred at line: [39] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
java.lang.Long cannot be resolved to a type
An error occurred at line: [40] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
_jspx_dependants cannot be resolved to a variable
An error occurred at line: [43] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
java.util.Set cannot be resolved to a type
An error occurred at line: [43] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
java.lang.String cannot be resolved to a type
An error occurred at line: [44] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
_jspx_imports_packages cannot be resolved to a variable
An error occurred at line: [47] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
java.util.Set cannot be resolved to a type
An error occurred at line: [47] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
java.lang.String cannot be resolved to a type
An error occurred at line: [48] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
_jspx_imports_classes cannot be resolved to a variable
An error occurred at line: [55] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
The method getServletConfig() is undefined for the type index_jsp
An error occurred at line: [66] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
The method getServletConfig() is undefined for the type index_jsp
An error occurred at line: [80] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
java.io.IOException cannot be resolved to a type
An error occurred at line: [80] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
No exception of type ServletException can be thrown; an exception type must be a subclass of Throwable
An error occurred at line: [82] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
java.lang.String cannot be resolved to a type
An error occurred at line: [82] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
The method getMethod() from the type HttpServletRequest refers to the missing type String
An error occurred at line: [83] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
The type java.lang.Enum cannot be resolved. It is indirectly referenced from required .class files
An error occurred at line: [83] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
The method equals(DispatcherType) is undefined for the type DispatcherType
An error occurred at line: [84] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
The method sendError(int, String) from the type HttpServletResponse refers to the missing type String
An error occurred at line: [92] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
java.lang.Object cannot be resolved to a type
An error occurred at line: [98] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
The method setContentType(String) from the type ServletResponse refers to the missing type String
An error occurred at line: [99] in the generated java file: [/home/work/Schreibtisch/apache-tomcat-8.0.53/work/Catalina/localhost/ROOT/org/apache/jsp/index_jsp.java]
The method getPageContext(Servlet, ServletRequest, ServletResponse, String, boolean, int, boolean) from the type JspFactory refers to the missing type String
An error occurred at line: 16 in the jsp file: /index.jsp
The type java.io.Writer cannot be resolved. It is indirectly referenced from required .class files
13: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: See the License for the specific language governing permissions and
15: limitations under the License.
16: --%>
17: <%@ page session="false" pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %>
18: <%
19: java.text.SimpleDateFormat sdf = new java.text.SimpleDateFormat("yyyy");
An error occurred at line: 16 in the jsp file: /index.jsp
The method write(String) is undefined for the type JspWriter
13: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: See the License for the specific language governing permissions and
15: limitations under the License.
16: --%>
17: <%@ page session="false" pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %>
18: <%
19: java.text.SimpleDateFormat sdf = new java.text.SimpleDateFormat("yyyy");
An error occurred at line: 16 in the jsp file: /index.jsp
The method write(String) is undefined for the type JspWriter
13: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: See the License for the specific language governing permissions and
15: limitations under the License.
16: --%>
17: <%@ page session="false" pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %>
18: <%
19: java.text.SimpleDateFormat sdf = new java.text.SimpleDateFormat("yyyy");
An error occurred at line: 19 in the jsp file: /index.jsp
java.text.SimpleDateFormat cannot be resolved to a type
16: --%>
17: <%@ page session="false" pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %>
18: <%
19: java.text.SimpleDateFormat sdf = new java.text.SimpleDateFormat("yyyy");
20: request.setAttribute("year", sdf.format(new java.util.Date()));
21: request.setAttribute("tomcatUrl", "https://tomcat.apache.org/");
22: request.setAttribute("tomcatDocUrl", "/docs/");
An error occurred at line: 19 in the jsp file: /index.jsp
java.text.SimpleDateFormat cannot be resolved to a type
16: --%>
17: <%@ page session="false" pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %>
18: <%
19: java.text.SimpleDateFormat sdf = new java.text.SimpleDateFormat("yyyy");
20: request.setAttribute("year", sdf.format(new java.util.Date()));
21: request.setAttribute("tomcatUrl", "https://tomcat.apache.org/");
22: request.setAttribute("tomcatDocUrl", "/docs/");
An error occurred at line: 20 in the jsp file: /index.jsp
java.util.Date cannot be resolved to a type
17: <%@ page session="false" pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %>
18: <%
19: java.text.SimpleDateFormat sdf = new java.text.SimpleDateFormat("yyyy");
20: request.setAttribute("year", sdf.format(new java.util.Date()));
21: request.setAttribute("tomcatUrl", "https://tomcat.apache.org/");
22: request.setAttribute("tomcatDocUrl", "/docs/");
23: request.setAttribute("tomcatExamplesUrl", "/examples/");
An error occurred at line: 21 in the jsp file: /index.jsp
The method setAttribute(String, Object) from the type ServletRequest refers to the missing type String
18: <%
19: java.text.SimpleDateFormat sdf = new java.text.SimpleDateFormat("yyyy");
20: request.setAttribute("year", sdf.format(new java.util.Date()));
21: request.setAttribute("tomcatUrl", "https://tomcat.apache.org/");
22: request.setAttribute("tomcatDocUrl", "/docs/");
23: request.setAttribute("tomcatExamplesUrl", "/examples/");
24: %>
An error occurred at line: 22 in the jsp file: /index.jsp
The method setAttribute(String, Object) from the type ServletRequest refers to the missing type String
19: java.text.SimpleDateFormat sdf = new java.text.SimpleDateFormat("yyyy");
20: request.setAttribute("year", sdf.format(new java.util.Date()));
21: request.setAttribute("tomcatUrl", "https://tomcat.apache.org/");
22: request.setAttribute("tomcatDocUrl", "/docs/");
23: request.setAttribute("tomcatExamplesUrl", "/examples/");
24: %>
25: <!DOCTYPE html>
An error occurred at line: 23 in the jsp file: /index.jsp
The method setAttribute(String, Object) from the type ServletRequest refers to the missing type String
20: request.setAttribute("year", sdf.format(new java.util.Date()));
21: request.setAttribute("tomcatUrl", "https://tomcat.apache.org/");
22: request.setAttribute("tomcatDocUrl", "/docs/");
23: request.setAttribute("tomcatExamplesUrl", "/examples/");
24: %>
25: <!DOCTYPE html>
26: <html lang="en">
An error occurred at line: 24 in the jsp file: /index.jsp
The method write(String) is undefined for the type JspWriter
21: request.setAttribute("tomcatUrl", "https://tomcat.apache.org/");
22: request.setAttribute("tomcatDocUrl", "/docs/");
23: request.setAttribute("tomcatExamplesUrl", "/examples/");
24: %>
25: <!DOCTYPE html>
26: <html lang="en">
27: <head>
An error occurred at line: 24 in the jsp file: /index.jsp
The method write(String) is undefined for the type JspWriter
21: request.setAttribute("tomcatUrl", "https://tomcat.apache.org/");
22: request.setAttribute("tomcatDocUrl", "/docs/");
23: request.setAttribute("tomcatExamplesUrl", "/examples/");
24: %>
25: <!DOCTYPE html>
26: <html lang="en">
27: <head>
An error occurred at line: 24 in the jsp file: /index.jsp
The method write(String) is undefined for the type JspWriter
21: request.setAttribute("tomcatUrl", "https://tomcat.apache.org/");
22: request.setAttribute("tomcatDocUrl", "/docs/");
23: request.setAttribute("tomcatExamplesUrl", "/examples/");
24: %>
25: <!DOCTYPE html>
26: <html lang="en">
27: <head>
An error occurred at line: 24 in the jsp file: /index.jsp
The method write(String) is undefined for the type JspWriter
21: request.setAttribute("tomcatUrl", "https://tomcat.apache.org/");
22: request.setAttribute("tomcatDocUrl", "/docs/");
23: request.setAttribute("tomcatExamplesUrl", "/examples/");
24: %>
25: <!DOCTYPE html>
26: <html lang="en">
27: <head>
An error occurred at line: 24 in the jsp file: /index.jsp
The method write(String) is undefined for the type JspWriter
21: request.setAttribute("tomcatUrl", "https://tomcat.apache.org/");
22: request.setAttribute("tomcatDocUrl", "/docs/");
23: request.setAttribute("tomcatExamplesUrl", "/examples/");
24: %>
25: <!DOCTYPE html>
26: <html lang="en">
27: <head>
An error occurred at line: 24 in the jsp file: /index.jsp
The method write(String) is undefined for the type JspWriter
21: request.setAttribute("tomcatUrl", "https://tomcat.apache.org/");
22: request.setAttribute("tomcatDocUrl", "/docs/");
23: request.setAttribute("tomcatExamplesUrl", "/examples/");
24: %>
25: <!DOCTYPE html>
26: <html lang="en">
27: <head>
An error occurred at line: 29 in the jsp file: /index.jsp
The method getServerInfo() from the type ServletContext refers to the missing type String
26: <html lang="en">
27: <head>
28: <meta charset="UTF-8" />
29: <title><%=request.getServletContext().getServerInfo() %></title>
30: <link href="favicon.ico" rel="icon" type="image/x-icon" />
31: <link href="favicon.ico" rel="shortcut icon" type="image/x-icon" />
32: <link href="tomcat.css" rel="stylesheet" type="text/css" />
An error occurred at line: 29 in the jsp file: /index.jsp
The method write(String) is undefined for the type JspWriter
26: <html lang="en">
27: <head>
28: <meta charset="UTF-8" />
29: <title><%=request.getServletContext().getServerInfo() %></title>
30: <link href="favicon.ico" rel="icon" type="image/x-icon" />
31: <link href="favicon.ico" rel="shortcut icon" type="image/x-icon" />
32: <link href="tomcat.css" rel="stylesheet" type="text/css" />
An error occurred at line: 29 in the jsp file: /index.jsp
The method write(String) is undefined for the type JspWriter
26: <html lang="en">
27: <head>
28: <meta charset="UTF-8" />
29: <title><%=request.getServletContext().getServerInfo() %></title>
30: <link href="favicon.ico" rel="icon" type="image/x-icon" />
31: <link href="favicon.ico" rel="shortcut icon" type="image/x-icon" />
32: <link href="tomcat.css" rel="stylesheet" type="text/css" />
An error occurred at line: 29 in the jsp file: /index.jsp
The method write(String) is undefined for the type JspWriter
26: <html lang="en">
27: <head>
28: <meta charset="UTF-8" />
29: <title><%=request.getServletContext().getServerInfo() %></title>
30: <link href="favicon.ico" rel="icon" type="image/x-icon" />
31: <link href="favicon.ico" rel="shortcut icon" type="image/x-icon" />
32: <link href="tomcat.css" rel="stylesheet" type="text/css" />
An error occurred at line: 29 in the jsp file: /index.jsp
The method write(String) is undefined for the type JspWriter
26: <html lang="en">
27: <head>
28: <meta charset="UTF-8" />
29: <title><%=request.getServletContext().getServerInfo() %></title>
30: <link href="favicon.ico" rel="icon" type="image/x-icon" />
31: <link href="favicon.ico" rel="shortcut icon" type="image/x-icon" />
32: <link href="tomcat.css" rel="stylesheet" type="text/css" />
An error occurred at line: 29 in the jsp file: /index.jsp
The method write(String) is undefined for the type JspWriter
26: <html lang="en">
27: <head>
28: <meta charset="UTF-8" />
29: <title><%=request.getServletContext().getServerInfo() %></title>
30: <link href="favicon.ico" rel="icon" type="image/x-icon" />
31: <link href="favicon.ico" rel="shortcut icon" type="image/x-icon" />
32: <link href="tomcat.css" rel="stylesheet" type="text/css" />
An error occurred at line: 29 in the jsp file: /index.jsp
The method write(String) is undefined for the type JspWriter
26: <html lang="en">
27: <head>
28: <meta charset="UTF-8" />
29: <title><%=request.getServletContext().getServerInfo() %></title>
30: <link href="favicon.ico" rel="icon" type="image/x-icon" />
31: <link href="favicon.ico" rel="shortcut icon" type="image/x-icon" />
32: <link href="tomcat.css" rel="stylesheet" type="text/css" />
An error occurred at line: 29 in the jsp file: /index.jsp
The method write(String) is undefined for the type JspWriter
26: <html lang="en">
27: <head>
28: <meta charset="UTF-8" />
29: <title><%=request.getServletContext().getServerInfo() %></title>
30: <link href="favicon.ico" rel="icon" type="image/x-icon" />
31: <link href="favicon.ico" rel="shortcut icon" type="image/x-icon" />
32: <link href="tomcat.css" rel="stylesheet" type="text/css" />
An error occurred at line: 29 in the jsp file: /index.jsp
The method write(String) is undefined for the type JspWriter
26: <html lang="en">
27: <head>
28: <meta charset="UTF-8" />
29: <title><%=request.getServletContext().getServerInfo() %></title>
30: <link href="favicon.ico" rel="icon" type="image/x-icon" />
31: <link href="favicon.ico" rel="shortcut icon" type="image/x-icon" />
32: <link href="tomcat.css" rel="stylesheet" type="text/css" />
An error occurred at line: 29 in the jsp file: /index.jsp
The method write(String) is undefined for the type JspWriter
26: <html lang="en">
27: <head>
28: <meta charset="UTF-8" />
29: <title><%=request.getServletContext().getServerInfo() %></title>
30: <link href="favicon.ico" rel="icon" type="image/x-icon" />
31: <link href="favicon.ico" rel="shortcut icon" type="image/x-icon" />
32: <link href="tomcat.css" rel="stylesheet" type="text/css" />
An error occurred at line: 29 in the jsp file: /index.jsp
The method write(String) is undefined for the type JspWriter
26: <html lang="en">
27: <head>
28: <meta charset="UTF-8" />
29: <title><%=request.getServletContext().getServerInfo() %></title>
30: <link href="favicon.ico" rel="icon" type="image/x-icon" />
31: <link href="favicon.ico" rel="shortcut icon" type="image/x-icon" />
32: <link href="tomcat.css" rel="stylesheet" type="text/css" />
An error occurred at line: 38 in the jsp file: /index.jsp
java.lang.String cannot be resolved to a type
35: <body>
36: <div id="wrapper">
37: <div id="navigation" class="curved container">
38: <span id="nav-home"><a href="${tomcatUrl}">Home</a></span>
39: <span id="nav-hosts"><a href="${tomcatDocUrl}">Documentation</a></span>
40: <span id="nav-config"><a href="${tomcatDocUrl}config/">Configuration</a></span>
41: <span id="nav-examples"><a href="${tomcatExamplesUrl}">Examples</a></span>
An error occurred at line: 38 in the jsp file: /index.jsp
java.lang.String cannot be resolved to a type
35: <body>
36: <div id="wrapper">
37: <div id="navigation" class="curved container">
38: <span id="nav-home"><a href="${tomcatUrl}">Home</a></span>
39: <span id="nav-hosts"><a href="${tomcatDocUrl}">Documentation</a></span>
40: <span id="nav-config"><a href="${tomcatDocUrl}config/">Configuration</a></span>
41: <span id="nav-examples"><a href="${tomcatExamplesUrl}">Examples</a></span>
An error occurred at line: 38 in the jsp file: /index.jsp
The method write(String) is undefined for the type JspWriter
35: <body>
36: <div id="wrapper">
37: <div id="navigation" class="curved container">
38: <span id="nav-home"><a href="${tomcatUrl}">Home</a></span>
39: <span id="nav-hosts"><a href="${tomcatDocUrl}">Documentation</a></span>
40: <span id="nav-config"><a href="${tomcatDocUrl}config/">Configuration</a></span>
41: <span id="nav-examples"><a href="${tomcatExamplesUrl}">Examples</a></span>
An error occurred at line: 38 in the jsp file: /index.jsp
The method write(String) is undefined for the type JspWriter
35: <body>
36: <div id="wrapper">
37: <div id="navigation" class="curved container">
38: <span id="nav-home"><a href="${tomcatUrl}">Home</a></span>
39: <span id="nav-hosts"><a href="${tomcatDocUrl}">Documentation</a></span>
40: <span id="nav-config"><a href="${tomcatDocUrl}config/">Configuration</a></span>
41: <span id="nav-examples"><a href="${tomcatExamplesUrl}">Examples</a></span>
An error occurred at line: 39 in the jsp file: /index.jsp
java.lang.String cannot be resolved to a type
36: <div id="wrapper">
37: <div id="navigation" class="curved container">
38: <span id="nav-home"><a href="${tomcatUrl}">Home</a></span>
39: <span id="nav-hosts"><a href="${tomcatDocUrl}">Documentation</a></span>
40: <span id="nav-config"><a href="${tomcatDocUrl}config/">Configuration</a></span>
41: <span id="nav-examples"><a href="${tomcatExamplesUrl}">Examples</a></span>
42: <span id="nav-wiki"><a href="https://wiki.apache.org/tomcat/FrontPage">Wiki</a></span>
An error occurred at line: 39 in the jsp file: /index.jsp
java.lang.String cannot be resolved to a type
36: <div id="wrapper">
37: <div id="navigation" class="curved container">
38: <span id="nav-home"><a href="${tomcatUrl}">Home</a></span>
39: <span id="nav-hosts"><a href="${tomcatDocUrl}">Documentation</a></span>
40: <span id="nav-config"><a href="${tomcatDocUrl}config/">Configuration</a></span>
41: <span id="nav-examples"><a href="${tomcatExamplesUrl}">Examples</a></span>
42: <span id="nav-wiki"><a href="https://wiki.apache.org/tomcat/FrontPage">Wiki</a></span>
An error occurred at line: 39 in the jsp file: /index.jsp
The method write(String) is undefined for the type JspWriter
36: <div id="wrapper">
37: <div id="navigation" class="curved container">
38: <span id="nav-home"><a href="${tomcatUrl}">Home</a></span>
39: <span id="nav-hosts"><a href="${tomcatDocUrl}">Documentation</a></span>
40: <span id="nav-config"><a href="${tomcatDocUrl}config/">Configuration</a></span>
41: <span id="nav-examples"><a href="${tomcatExamplesUrl}">Examples</a></span>
42: <span id="nav-wiki"><a href="https://wiki.apache.org/tomcat/FrontPage">Wiki</a></span>
An error occurred at line: 39 in the jsp file: /index.jsp
The method write(String) is undefined for the type JspWriter
36: <div id="wrapper">
37: <div id="navigation" class="curved container">
38: <span id="nav-home"><a href="${tomcatUrl}">Home</a></span>
39: <span id="nav-hosts"><a href="${tomcatDocUrl}">Documentation</a></span>
40: <span id="nav-config"><a href="${tomcatDocUrl}config/">Configuration</a></span>
41: <span id="nav-examples"><a href="${tomcatExamplesUrl}">Examples</a></span>
42: <span id="nav-wiki"><a href="https://wiki.apache.org/tomcat/FrontPage">Wiki</a></span>
An error occurred at line: 40 in the jsp file: /index.jsp
java.lang.String cannot be resolved to a type
37: <div id="navigation" class="curved container">
38: <span id="nav-home"><a href="${tomcatUrl}">Home</a></span>
39: <span id="nav-hosts"><a href="${tomcatDocUrl}">Documentation</a></span>
40: <span id="nav-config"><a href="${tomcatDocUrl}config/">Configuration</a></span>
41: <span id="nav-examples"><a href="${tomcatExamplesUrl}">Examples</a></span>
42: <span id="nav-wiki"><a href="https://wiki.apache.org/tomcat/FrontPage">Wiki</a></span>
43: <span id="nav-lists"><a href="${tomcatUrl}lists.html">Mailing Lists</a></span>
An error occurred at line: 40 in the jsp file: /index.jsp
java.lang.String cannot be resolved to a type
37: <div id="navigation" class="curved container">
38: <span id="nav-home"><a href="${tomcatUrl}">Home</a></span>
39: <span id="nav-hosts"><a href="${tomcatDocUrl}">Documentation</a></span>
40: <span id="nav-config"><a href="${tomcatDocUrl}config/">Configuration</a></span>
41: <span id="nav-examples"><a href="${tomcatExamplesUrl}">Examples</a></span>
42: <span id="nav-wiki"><a href="https://wiki.apache.org/tomcat/FrontPage">Wiki</a></span>
43: <span id="nav-lists"><a href="${tomcatUrl}lists.html">Mailing Lists</a></span>
An error occurred at line: 40 in the jsp file: /index.jsp
The method write(String) is undefined for the type JspWriter
37: <div id="navigation" class="curved container">
38: <span id="nav-home"><a href="${tomcatUrl}">Home</a></span>
39: <span id="nav-hosts"><a href="${tomcatDocUrl}">Documentation</a></span>
40: <span id="nav-config"><a href="${tomcatDocUrl}config/">Configuration</a></span>
41: <span id="nav-examples"><a href="${tomcatExamplesUrl}">Examples</a></span>
42: <span id="nav-wiki"><a href="https://wiki.apache.org/tomcat/FrontPage">Wiki</a></span>
43: <span id="nav-lists"><a href="${tomcatUrl}lists.html">Mailing Lists</a></span>
An error occurred at line: 40 in the jsp file: /index.jsp
The method write(String) is undefined for the type JspWriter
37: <div id="navigation" class="curved container">
38: <span id="nav-home"><a href="${tomcatUrl}">Home</a></span>
39: <span id="nav-hosts"><a href="${tomcatDocUrl}">Documentation</a></span>
40: <span id="nav-config"><a href="${tomcatDocUrl}config/">Configuration</a></span>
41: <span id="nav-examples"><a href="${tomcatExamplesUrl}">Examples</a></span>
42: <span id="nav-wiki"><a href="https://wiki.apache.org/tomcat/FrontPage">Wiki</a></span>
43: <span id="nav-lists"><a href="${tomcatUrl}lists.html">Mailing Lists</a></span>
An error occurred at line: 41 in the jsp file: /index.jsp
java.lang.String cannot be resolved to a type
38: <span id="nav-home"><a href="${tomcatUrl}">Home</a></span>
39: <span id="nav-hosts"><a href="${tomcatDocUrl}">Documentation</a></span>
40: <span id="nav-config"><a href="${tomcatDocUrl}config/">Configuration</a></span>
41: <span id="nav-examples"><a href="${tomcatExamplesUrl}">Examples</a></span>
42: <span id="nav-wiki"><a href="https://wiki.apache.org/tomcat/FrontPage">Wiki</a></span>
43: <span id="nav-lists"><a href="${tomcatUrl}lists.html">Mailing Lists</a></span>
44: <span id="nav-help"><a href="${tomcatUrl}findhelp.html">Find Help</a></span>
An error occurred at line: 41 in the jsp file: /index.jsp
java.lang.String cannot be resolved to a type
38: <span id="nav-home"><a href="${tomcatUrl}">Home</a></span>
39: <span id="nav-hosts"><a href="${tomcatDocUrl}">Documentation</a></span>
40: <span id="nav-config"><a href="${tomcatDocUrl}config/">Configuration</a></span>
41: <span id="nav-examples"><a href="${tomcatExamplesUrl}">Examples</a></span>
42: <span id="nav-wiki"><a href="https://wiki.apache.org/tomcat/FrontPage">Wiki</a></span>
43: <span id="nav-lists"><a href="${tomcatUrl}lists.html">Mailing Lists</a></span>
44: <span id="nav-help"><a href="${tomcatUrl}findhelp.html">Find Help</a></span>
An error occurred at line: 41 in the jsp file: /index.jsp
The method write(String) is undefined for the type JspWriter
38: <span id="nav-home"><a href="${tomcatUrl}">Home</a></span>
39: <span id="nav-hosts"><a href="${tomcatDocUrl}">Documentation</a></span>
40: <span id="nav-config"><a href="${tomcatDocUrl}config/">Configuration</a></span>
41: <span id="nav-examples"><a href="${tomcatExamplesUrl}">Examples</a></span>
42: <span id="nav-wiki"><a href="https://wiki.apache.org/tomcat/FrontPage">Wiki</a></span>
43: <span id="nav-lists"><a href="${tomcatUrl}lists.html">Mailing Lists</a></span>
44: <span id="nav-help"><a href="${tomcatUrl}findhelp.html">Find Help</a></span>
An error occurred at line: 41 in the jsp file: /index.jsp
The method write(String) is undefined for the type JspWriter
38: <span id="nav-home"><a href="${tomcatUrl}">Home</a></span>
39: <span id="nav-hosts"><a href="${tomcatDocUrl}">Documentation</a></span>
40: <span id="nav-config"><a href="${tomcatDocUrl}config/">Configuration</a></span>
41: <span id="nav-examples"><a href="${tomcatExamplesUrl}">Examples</a></span>
42: <span id="nav-wiki"><a href="https://wiki.apache.org/tomcat/FrontPage">Wiki</a></span>
43: <span id="nav-lists"><a href="${tomcatUrl}lists.html">Mailing Lists</a></span>
44: <span id="nav-help"><a href="${tomcatUrl}findhelp.html">Find Help</a></span>
An error occurred at line: 41 in the jsp file: /index.jsp
The method write(String) is undefined for the type JspWriter
38: <span id="nav-home"><a href="${tomcatUrl}">Home</a></span>
39: <span id="nav-hosts"><a href="${tomcatDocUrl}">Documentation</a></span>
40: <span id="nav-config"><a href="${tomcatDocUrl}config/">Configuration</a></span>
41: <span id="nav-examples"><a href="${tomcatExamplesUrl}">Examples</a></span>
42: <span id="nav-wiki"><a href="https://wiki.apache.org/tomcat/FrontPage">Wiki</a></span>
43: <span id="nav-lists"><a href="${tomcatUrl}lists.html">Mailing Lists</a></span>
44: <span id="nav-help"><a href="${tomcatUrl}findhelp.html">Find Help</a></span>
An error occurred at line: 43 in the jsp file: /index.jsp
java.lang.String cannot be resolved to a type
40: <span id="nav-config"><a href="${tomcatDocUrl}config/">Configuration</a></span>
41: <span id="nav-examples"><a href="${tomcatExamplesUrl}">Examples</a></span>
42: <span id="nav-wiki"><a href="https://wiki.apache.org/tomcat/FrontPage">Wiki</a></span>
43: <span id="nav-lists"><a href="${tomcatUrl}lists.html">Mailing Lists</a></span>
44: <span id="nav-help"><a href="${tomcatUrl}findhelp.html">Find Help</a></span>
45: <br class="separator" />
46: </div>
An error occurred at line: 43 in the jsp file: /index.jsp
java.lang.String cannot be resolved to a type
40: <span id="nav-config"><a href="${tomcatDocUrl}config/">Configuration</a></span>
41: <span id="nav-examples"><a href="${tomcatExamplesUrl}">Examples</a></span>
42: <span id="nav-wiki"><a href="https://wiki.apache.org/tomcat/FrontPage">Wiki</a></span>
43: <span id="nav-lists"><a href="${tomcatUrl}lists.html">Mailing Lists</a></span>
44: <span id="nav-help"><a href="${tomcatUrl}findhelp.html">Find Help</a></span>
45: <br class="separator" />
46: </div>
An error occurred at line: 43 in the jsp file: /index.jsp
The method write(String) is undefined for the type JspWriter
40: <span id="nav-config"><a href="${tomcatDocUrl}config/">Configuration</a></span>
41: <span id="nav-examples"><a href="${tomcatExamplesUrl}">Examples</a></span>
42: <span id="nav-wiki"><a href="https://wiki.apache.org/tomcat/FrontPage">Wiki</a></span>
43: <span id="nav-lists"><a href="${tomcatUrl}lists.html">Mailing Lists</a></span>
44: <span id="nav-help"><a href="${tomcatUrl}findhelp.html">Find Help</a></span>
45: <br class="separator" />
46: </div>
An error occurred at line: 43 in the jsp file: /index.jsp
The method write(String) is undefined for the type JspWriter
40: <span id="nav-config"><a href="${tomcatDocUrl}config/">Configuration</a></span>
41: <span id="nav-examples"><a href="${tomcatExamplesUrl}">Examples</a></span>
42: <span id="nav-wiki"><a href="https://wiki.apache.org/tomcat/FrontPage">Wiki</a></span>
43: <span id="nav-lists"><a href="${tomcatUrl}lists.html">Mailing Lists</a></span>
44: <span id="nav-help"><a href="${tomcatUrl}findhelp.html">Find Help</a></span>
45: <br class="separator" />
46: </div>
An error occurred at line: 44 in the jsp file: /index.jsp
java.lang.String cannot be resolved to a type
41: <span id="nav-examples"><a href="${tomcatExamplesUrl}">Examples</a></span>
42: <span id="nav-wiki"><a href="https://wiki.apache.org/tomcat/FrontPage">Wiki</a></span>
43: <span id="nav-lists"><a href="${tomcatUrl}lists.html">Mailing Lists</a></span>
44: <span id="nav-help"><a href="${tomcatUrl}findhelp.html">Find Help</a></span>
45: <br class="separator" />
46: </div>
47: <div id="asf-box">
An error occurred at line: 44 in the jsp file: /index.jsp
java.lang.String cannot be resolved to a type
41: <span id="nav-examples"><a href="${tomcatExamplesUrl}">Examples</a></span>
42: <span id="nav-wiki"><a href="https://wiki.apache.org/tomcat/FrontPage">Wiki</a></span>
43: <span id="nav-lists"><a href="${tomcatUrl}lists.html">Mailing Lists</a></span>
44: <span id="nav-help"><a href="${tomcatUrl}findhelp.html">Find Help</a></span>
45: <br class="separator" />
46: </div>
47: <div id="asf-box">
An error occurred at line: 44 in the jsp file: /index.jsp
The method write(String) is undefined for the type JspWriter
41: <span id="nav-examples"><a href="${tomcatExamplesUrl}">Examples</a></span>
42: <span id="nav-wiki"><a href="https://wiki.apache.org/tomcat/FrontPage">Wiki</a></span>
43: <span id="nav-lists"><a href="${tomcatUrl}lists.html">Mailing Lists</a></span>
44: <span id="nav-help"><a href="${tomcatUrl}findhelp.html">Find Help</a></span>
45: <br class="separator" />
46: </div>
47: <div id="asf-box">
An error occurred at line: 44 in the jsp file: /index.jsp
The method write(String) is undefined for the type JspWriter
41: <span id="nav-examples"><a href="${tomcatExamplesUrl}">Examples</a></span>
42: <span id="nav-wiki"><a href="https://wiki.apache.org/tomcat/FrontPage">Wiki</a></span>
43: <span id="nav-lists"><a href="${tomcatUrl}lists.html">Mailing Lists</a></span>
44: <span id="nav-help"><a href="${tomcatUrl}findhelp.html">Find Help</a></span>
45: <br class="separator" />
46: </div>
47: <div id="asf-box">
Stacktrace:
org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:102)
org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:198)
org.apache.jasper.compiler.JDTCompiler.generateClass(JDTCompiler.java:495)
org.apache.jasper.compiler.Compiler.compile(Compiler.java:363)
org.apache.jasper.compiler.Compiler.compile(Compiler.java:338)
org.apache.jasper.compiler.Compiler.compile(Compiler.java:325)
org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:580)
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:363)
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:396)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:340)
javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
</pre><p><b>Note</b> The full stack trace of the root cause is available in the server logs.</p><hr class="line" /><h3>Apache Tomcat/8.0.53</h3></body></html>
|
|
LordYoda
(Themenstarter)
Anmeldungsdatum: 15. Juni 2013
Beiträge: 225
|
Wie auch immer... Ich habe Tomcat mit "sudo apt install tomcat8" UND DANACH mit "sudo apt install tomcat8-docs tomcat8-examples tomcat8-admin" installiert. In "/var/lib/tomcat8/conf/tomcat-users.xml" die letzte Zeile um Folgende erweitert: <user username="tomcat" password="tomcat" roles="manager,manager-gui"/> Jetzt läuft es. Die Seite wird folgendermaßen aufgerufen: localhost:8080/manager Danke, Into_the_Pit
|
Benno-007
Anmeldungsdatum: 28. August 2007
Beiträge: 29240
Wohnort: Germany
|
Wäre es ein Ubuntu-Buch, hätte es zu keiner ZIP geraten - oder es wäre ein sehr schlechtes Buch, wenn es das nicht begründet. Wenn das Buch was taugen soll, dann sollte da auch was über eine Paketverwaltung stehen - eine der Linux-Grundlagen, auf jedem ernstzunehmenden Linux. Standardweg zur Softwareinstallation. Siehe auch diese und andere Warnungen unter Unterschiede zu Windows, Punkt 2. Du hättest jetzt möglicherweise einen Server ohne Sicherheitsupdates gehabt - und nicht richtig integriert, denn jetzt läuft es ja besser. Und in welcher Reihenfolge man hinter apt Software zum Installieren angibt, ist herzlich egal:
sudo apt install tomcat8-docs tomcat8-examples tomcat8-admin tomcat8
|