windows server2008下安装配置tomcat

时间:2024-03-16 18:31:15

1、准备

tomcat 下载地址

2、安装配置JDK

https://blog.csdn.net/qq_28189423/article/details/82378037

3、解压tomcat到软件目录,不要中文已经其他特殊字符。

windows server2008下安装配置tomcat

4、配置环境变量

计算机->右键->属性

windows server2008下安装配置tomcat

高级系统设置

windows server2008下安装配置tomcat

环境变量

windows server2008下安装配置tomcat

新建CATALINA_HOME

C:\Program Files\apache-tomcat-7.0.90

windows server2008下安装配置tomcat

windows server2008下安装配置tomcat

编辑path,添加tomcat的bin目录
;%CATALINA_HOME%\bin

windows server2008下安装配置tomcat

windows server2008下安装配置tomcat

5、测试安装是否成功

全部确定后,打开cmd窗口

windows键+r ,输入cmd,回车

windows server2008下安装配置tomcat

输入startup,回车

windows server2008下安装配置tomcat

windows server2008下安装配置tomcat

保持窗口不要关闭,关闭窗口会退出tomcat,无法使用。

打开浏览器,输入http://localhost:8080 ,回车

windows server2008下安装配置tomcat

如果你能看到我们可爱的Tom猫,证明你的tomcat配置就成功了。

6、配置防火墙解决外部请求无效的问题。

a、局域网内使用IP地址请求没有响应

windows server2008下安装配置tomcat

尝试ping主机,可以ping通

如果ping不通主机,参考链接

https://mp.csdn.net/postedit/82380040

windows server2008下安装配置tomcat

在能够ping通主机的前提下,我们给主机添加防火墙规则

开始->控制面板->服务器管理器

windows server2008下安装配置tomcat

打开服务器管理器->配置->高级安全windows防火墙设置->入站规则

windows server2008下安装配置tomcat

右键->新建规则

windows server2008下安装配置tomcat

点击端口

windows server2008下安装配置tomcat

添加8080端口

windows server2008下安装配置tomcat

windows server2008下安装配置tomcat

windows server2008下安装配置tomcat

这样我们就可以访问我们的主机tomcat了。

windows server2008下安装配置tomcat