tomcat 在 Linux 的部署,以 Ubuntu 为例

1、下载 Apache Tomcat [http://tomcat.apache.org]

tomcat 在 Linux 的部署,以 Ubuntu 为例


tomcat 在 Linux 的部署,以 Ubuntu 为例

tomcat 在 Linux 的部署,以 Ubuntu 为例2、解压、重命名、拷贝到指定目录

下载完成后的 压缩包

tomcat 在 Linux 的部署,以 Ubuntu 为例

解压后的文件夹

tomcat 在 Linux 的部署,以 Ubuntu 为例

重命名文件夹为tomcat

tomcat 在 Linux 的部署,以 Ubuntu 为例

剪切到路径[/usr/lib] 此路径根据个人需要*存放,但要记住路径地址,后面赋予权限时需要

tomcat 在 Linux 的部署,以 Ubuntu 为例

3、赋予目录权限 [以下命令中的路径都使用绝对路径,对于已经切换到 tomcat 目录的,可以不使用绝对路径]

chmod -R 777 /usr/lib/tomcat/

tomcat 在 Linux 的部署,以 Ubuntu 为例

4、启动 Tomcat [以下命令中的路径都使用绝对路径,对于已经切换到 tomcat 目录的,可以不使用绝对路径]

./usr/lib/tomcat/bin/startup.sh

tomcat 在 Linux 的部署,以 Ubuntu 为例

5、登录查看

由于之前改过 server.xml 中的端口。因此,下图使用 http://localhost/来访问的。对于没有改过端口的默认使用此地址访问:http://localhost:8080/

tomcat 在 Linux 的部署,以 Ubuntu 为例

6、查看 Tomcat 日志 [以下命令中的路径都使用绝对路径,对于已经切换到 tomcat 目录的,可以不使用绝对路径]

tail -f -n 5 /usr/lib/tomcat/logs/catalina.out

以上命令可以动态显示日志情况,只要终端不关闭就能正常看到滚动的日志

tomcat 在 Linux 的部署,以 Ubuntu 为例

7、关闭 Tomcat [以下命令中的路径都使用绝对路径,对于已经切换到 tomcat 目录的,可以不使用绝对路径]

./usr/lib/tomcat/bin/shutdown.sh

tomcat 在 Linux 的部署,以 Ubuntu 为例


本文出自 “TONY - 小四 技术博客” 博客,请务必保留此出处http://tonycody.blog.51cto.com/8421818/1408258

tomcat 在 Linux 的部署,以 Ubuntu 为例,布布扣,bubuko.com

tomcat 在 Linux 的部署,以 Ubuntu 为例

上一篇:Linux常用命令及Vim使用


下一篇:Linux YUM本地源配置