CentOS 7.6 安装 Apache Tomcat 8.5

CentOS 7.6 安装 Apache Tomcat 8.5

 

安装Java

 

yum -y install java-1.8.0-openjdk.x86_64 java-1.8.0-openjdk-devel.x86_64

java -version

updatedb

locate jre

Before we configure the JAVA_HOME environment, we need to know where the Java directory is. Check the Java directory with the command below:

sudo update-alternatives --config java


There is 1 program that provides 'java'.

  Selection    Command
-----------------------------------------------
*+ 1           java-1.8.0-openjdk.x86_64 (/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.302.b08-0.el7_9.x86_64/jre/bin/java)

Java directory = "/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.302.b08-0.el7_9.x86_64/jre"

Then edit the environment file with vim:

vim /etc/environment

 

 

Add the JAVA_HOME environment variable by adding the configuration below:

JAVA_HOME="/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.302.b08-0.el7_9.x86_64/jre"

 

 

Save the /etc/environment file and exit vim.

Next, edit the .bash_profile file and add the JAVA_HOME variable as well:

vim ~/.bash_profile

 

 

At the end of the file, paste the configuration below:

export JAVA_HOME=/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.302.b08-0.el7_9.x86_64/jre
export PATH=$JAVA_HOME/bin:$PATH
 

Save the file, then reload the bash_profile file.

source ~/.bash_profile
 

Make sure there is no error, Finally check the JAVA_HOME environment variable:

echo $JAVA_HOME


安装 tomcat

 Create a user and group named tomcat:

groupadd tomcat
useradd -s /bin/false -g tomcat -d /opt/tomcat tomcat

 Next, go to the /opt directory and download tomcat with the wget command:

cd /opt/
wget https://dlcdn.apache.org/tomcat/tomcat-8/v8.5.70/bin/apache-tomcat-8.5.70.tar.gz

Extract Tomcat and move all the files and directories that are in the 'apache-tomcat-8.5.6' directory to the 'tomcat' directory.

tar -xzvf apache-tomcat-8.5.70.tar.gz
mv apache-tomcat-8.5.70/* tomcat/

Now change the owner of the tomcat directory to the tomcat user and group.

chown -hR tomcat:tomcat tomcat

 Go to the tomcat/bin directory and run the command 'startup.sh' to test Apache Tomcat:

cd /opt/tomcat/bin/
./startup.sh

 

Tomcat is using port 8080 now, check the open port on the server with the netstat command.

netstat -plntu

 

 

Or visit the server IP address with port 8080   - with a web browser. You will see the Apache Tomcat default page.

 默认显示的网页是  tomcat安装目录里面的  /webapps/ROOT/index.jsp

 

 

 

 修改默认端口

tomcat默认的端口号是8080,可以通过配置把端口号修改成80

grep 8080 /opt/tomcat/conf/server.xml
         Define a non-SSL/TLS HTTP/1.1 Connector on port 8080
    <Connector port="8080" protocol="HTTP/1.1"
               port="8080" protocol="HTTP/1.1"

vi /opt/tomcat/conf/server.xml

    <Connector port="80" protocol="HTTP/1.1"
               connectionTimeout="20000"
               redirectPort="8443" />

 [root@VM-0-2-centos bin]# pwd
/opt/tomcat/bin
 
[root@VM-0-2-centos bin]# ./shutdown.sh
 
[root@VM-0-2-centos bin]# ./startup.sh
 

 

 

Tomcat配置Web默认页面

 修改配置文件server.xml(在conf目录下)

 

<Host name="172.18.0.5"  appBase="webapps"
            unpackWARs="true" autoDeploy="true">
<Context path="" docBase="C:\apache-tomcat-9.0.0.M22\webapps\ROOT"/>





posted @   emanlee  阅读(161)  评论(0编辑  收藏  举报
编辑推荐:
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
阅读排行:
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· 没有Manus邀请码?试试免邀请码的MGX或者开源的OpenManus吧
· 园子的第一款AI主题卫衣上架——"HELLO! HOW CAN I ASSIST YOU TODAY
历史上的今天:
2015-08-30 ERROR 1044 (42000): Access denied for user 'root'@'localhost' to database 'mysql'
2011-08-30 ASP.NET性能计数器
2011-08-30 如何选择 Web 服务器性能计数器
2011-08-30 Windows IIS Web services性能计数器说明
2011-08-30 异常详细信息: System.Web.HttpException: 服务器太忙
2009-08-30 ASPNET项目打包时遇到错误:无法生成项目输出组内容文件来自Web(活动)
2007-08-30 值得参考的NULL替换值
点击右上角即可分享
微信分享提示