linux-配置Java环境

Posted ~泊水~

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux-配置Java环境相关的知识,希望对你有一定的参考价值。

启动tomcat服务:sh startup.sh或./startup.sh
关闭tomcat服务:./shutdown.sh

linux 下启动tomcat
问题1:

[root@test233 bin]# sh startup.sh 
Cannot find ./catalina.sh
The file is absent or does not have execute permission
This file is needed to run this program

 解决办法:
给.sh文件授权

[root@test233 bin]#  chmod +x *.sh  

 问题2:

Neither the JAVA_HOME nor the JRE_HOME environment variable is defined
At least one of these environment variable is needed to run this program

 解决方法:

检查Java环境

1.上传Linux环境下的jdk

2.解压jdk文件

3.编辑.bash_profile文件 vim /root/.bash_profile

 进行 :wq!强制保存

4.启动tomcat

 5.测试命令

查看tomcat是否启动

6.如果还不能访问则配置防火墙。执行下面命令,重启tomcat服务

firewall-cmd --permanent --zone=public --add-port=8080/tcp  
firewall-cmd --reload  
firewall-cmd --zone=public --query-port=8080/tcp 

 

 7.访问

 

以上是关于linux-配置Java环境的主要内容,如果未能解决你的问题,请参考以下文章

vscode配置c++环境竟然是有手就行 !¿?!

java项目怎么部署到linux服务器啊?

linux怎么配置java环境

zookeeper linux 安装怎么配置java 环境变量

java在linux环境下的配置

linux 安装kafka需要配置java环境吗