yum安装tomcat

http://www.cnblogs.com/liaolongjun/p/5638740.html

http://www.awspack.com/os/linux/yum-install-tomcat/

在服务器跑Java程序的时候,经常用的Web服务器就是Tomcat,今天用yum命令试着安装了一下。

编译安装的时候需要安装JDK和Tomcat,而yum安装Tomcat直接把OpenJDK也给安装上了。

yum安装Tomcat

先查看一下yum安装时的Tomcat版本

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

# yum info tomcat

Loaded plugins: security

Available Packages

Name        : tomcat

Arch        : noarch

Version     : 7.0.33

Release     : 4.el6

Size        : 86 k

Repo        : epel

Summary     : Apache Servlet/JSP Engine, RI for Servlet 3.0/JSP 2.2 API

URL         : http://tomcat.apache.org/

License     : ASL 2.0

Description : Tomcat is the servlet container that is used in the official Reference

: Implementation for the Java Servlet and JavaServer Pages technologies.

: The Java Servlet and JavaServer Pages specifications are developed by

: Sun under the Java Community Process.

:

: Tomcat is developed in an open and participatory environment and

: released under the Apache Software License version 2.0. Tomcat is intended

: to be a collaboration of the best-of-breed developers from around the world.

Tomcat最新版本是2015/11/24发布的Tomcat8.0.29,而yum安装版本是2012/11/21发布的7.0.33(版本确实低了)。

安装Tomcat

安装Tomcat之后,查看安装的版本。

1

2

3

4

5

6

7

8

9

10

11

# yum install tomcat

# tomcat version

Server version: Apache Tomcat/7.0.33

Server built:   Apr 30 2014 09:16:58

Server number:  7.0.33.0

OS Name:        Linux

OS Version:     2.6.32-573.8.1.el6.x86_64

Architecture:   amd64

JVM Version:    1.8.0_65-b17

JVM Vendor:     Oracle Corporation

安装Tomcat时直接把OpenJDK也安装了

在这里可以看到安装的JDK不是Oracle的JDK而是OpenJDK。

1

2

3

4

# java -version

openjdk version "1.8.0_65"

OpenJDK Runtime Environment (build 1.8.0_65-b17)

OpenJDK 64-Bit Server VM (build 25.65-b01, mixed mode)

可以使用alternatives切换使用的Java版本。

1

2

3

4

5

6

7

8

# alternatives --config java

There are 2 programs which provide ‘java‘.

Selection    Command

-----------------------------------------------

1           /usr/lib/jvm/jre-1.5.0-gcj/bin/java

*+ 2           /usr/lib/jvm/jre-1.8.0-openjdk.x86_64/bin/java

使用Tomcat管理页面

访问Tomcat管理页面(http://localhost:8080/manager/html)需要安装tomcat-admin-webapps和修改tomcat-users.xml文件。

安装tomcat-admin-webapps

1

# yum install tomcat-admin-webapps

修改tomcat-users.xml文件

修改tomcat-users.xml文件(默认安装目录是/etc/tomcat),添加46-48行的内容。

/etc/tomcat/tomcat-users.xml

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

<?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-users>

<!--

NOTE:  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.

-->

<!--

NOTE:  The sample user and role entries below are wrapped in a comment

and thus are ignored when reading this file. Do not forget to remove

<!.. ..> that surrounds them.

-->

<!--

<role rolename="tomcat"/>

<role rolename="role1"/>

<user username="tomcat" password="tomcat" roles="tomcat"/>

<user username="both" password="tomcat" roles="tomcat,role1"/>

<user username="role1" password="tomcat" roles="role1"/>

-->

<!-- <role rolename="admin"/> -->

<!-- <role rolename="admin-gui"/> -->

<!-- <role rolename="admin-script"/> -->

<!-- <role rolename="manager"/> -->

<!-- <role rolename="manager-gui"/> -->

<!-- <role rolename="manager-script"/> -->

<!-- <role rolename="manager-jmx"/> -->

<!-- <role rolename="manager-status"/> -->

<!-- <user name="admin" password="adminadmin" roles="admin,manager,admin-gui,admin-script,manager-gui,manager-script,manager-jmx,manager-status" /> -->

<role rolename="admin-gui"/>

<role rolename="manager-gui"/>

<user username="tomcat" password="tomcat" roles="admin-gui,manager-gui"/>

</tomcat-users>

访问Tomcat管理页面

访问http://localhost:8080/manager/html,并输入48行里设定的username和password,就可以了。

时间: 2024-10-27 05:15:42

yum安装tomcat的相关文章

阿里云服务器Linux CentOS安装配置(四)yum安装tomcat

阿里云服务器Linux CentOS安装配置(四)yum安装tomcat 1.yum -y install tomcat  执行命令后,会帮你把jdk也安装好 2.tomcat安装目录:/var/lib/tomcat/ 3.tomcat配置目录:/etc/tomcat/ 4.启动tomcat:service tomcat start 5.访问下:curl 127.0.0.1:8080(安装目录里是个空文件夹,所以访问时,没有任何内容返回,这是正常的) 远程访问地址:http://ip:8080(

在CentOS 中yum 安装Tomcat 6

在linux下部署java开发的web应用,一般采用Tomact+jre环境(可不需要apache),在RHEL和CentOS下,可以采用yum在线自动安装方式安装,具体操作如下: 1.基础环境安装配置    如操作系统(我使用Centos6.3).网络及主机基本配置等 2.yum安装tomcat: yum -y install tomcat6 tomcat6-webapps tomcat6-admin-webapps tomcat6-docs-webapp tomcat6-javadoc yu

centos7中使用yum安装tomcat以及它的启动、停止、重启

centos7中使用yum安装tomcat 介绍 Apache Tomcat是用于提供Java应用程序的Web服务器和servlet容器. Tomcat是Apache Software Foundation发布的JavaServlet和JavaServer Pages技术的开源实现. 本教程介绍在CentOS 7服务器上使用yum进行Tomcat 7的基本安装和一些配置.请注意,这将安装在官方Ubuntu存储库中的最新版本的Tomcat,它可能是或不是最新版本的Tomcat.如果你想保证你安装的

linux centos中使用yum安装tomcat

在linux下部署java开发的web应用,一般采用Tomact+jre环境(可不需要apache),在RHEL和CentOS下,可以采用yum在线自动安装方式安装,具体操作如下: yum install tomcat6 执行以上命令系统会自动安装tomcat和所关联的jdk 下面结束安装系统位置和检测安装情况 安装位置 /etc/tomcat6 主程序/软件存放webapp位置 /var/lib/tomcat6/webapps 在Centos使用yum安装后,Tomcat相关的目录都已采用符号

centos7中使用yum安装tomcat

介绍 Apache Tomcat是用于提供Java应用程序的Web服务器和servlet容器. Tomcat是Apache Software Foundation发布的JavaServlet和JavaServer Pages技术的开源实现. 本教程介绍在CentOS 7服务器上使用yum进行Tomcat 7的基本安装和一些配置.请注意,这将安装在官方Ubuntu存储库中的最新版本的Tomcat,它可能是或不是最新版本的Tomcat.如果你想保证你安装的是最新版的Tomcat,你可以随时下载最新的

Linux yum 安装tomcat

yum -y install tomcat6 tomcat6-webapps tomcat6-admin-webapps tomcat6-docs-webapp tomcat6-javadoc 如果报错误:No package tomcat6 available,则执行 yum search tomcat 命令查看yum有哪些版本的包,然后再yum安装相应包 安装完成可以通过以下命令启动关闭重启服务: service tomcat6 start service tomcat6 stop serv

centos7中使用yum安装tomcat mysql 等

安装Tomcat yum install tomcat 答y在确认提示安装Tomcat. 这将安装Tomcat 7及其相关项,比如Java,它也将创建tomcat用户.最重要的Tomcat的文件将位于/usr/share/tomcat . 如果你已经有了,你想运行一个Tomcat应用程序,你可以将它放在/usr/share/tomcat/webapps的目录,配置Tomcat,并重新启动Tomcat服务.但在本教程中,我们将安装一些其他软件包,帮助您管理Tomcat应用程序和虚拟主机. 让我们快

yum 安装 tomcat

前言对于一个新安装的 centos 系统来说,是没有 tomcat 服务器的.用下面的命令可以查看 tomcat 服务的状态. systemctl status tomcat.service//或者 systemctl status tomcat123效果如下: 可以看到不能找到 tomcat.service , 这就证明这台机器上没有 tomcat 服务. 下面我们就来安装 tomcat 服务,并且把它运行起来. 安装 tomcat我们选择用 yum 来安装 tomcat , 安装命令如下:

yum安装tomcat默认JRE位置

tomcat 7,8 启动慢的问题 http://www.cnblogs.com/suiyueqiannian/p/6060951.html JRE默认路径 /usr/lib/jvm