如何使用“script -c”命令启动tomcat?

如何使用“script -c”命令启动tomcat?

我想使用以下命令启动 tomcat:

script -c "sh /usr/program/tomcat/tomcat-8.0.50/bin/startup.sh"

运行命令后,控制台显示tomcat启动成功。

ps -ef | grep tomcat显示tomcat没有启动。

然后我尝试使用script不带选项的命令-c

[root@xxx test]#script
Script started, file is typescript01
[root@xxx test]# sh /usr/program/tomcat/tomcat-8.0.50/bin/startup.sh 
Using CATALINA_BASE:   /usr/program/tomcat/tomcat-8.0.50
Using CATALINA_HOME:   /usr/program/tomcat/tomcat-8.0.50
Using CATALINA_TMPDIR: /usr/program/tomcat/tomcat-8.0.50/temp
Using JRE_HOME:        /usr/program/java/jdk1.8.0_112
Using CLASSPATH:       /usr/program/tomcat/tomcat-8.0.50/bin/bootstrap.jar:/usr/program/tomcat/tomcat-8.0.50/bin/tomcat-juli.jar
Tomcat started.

然后ps -ef | grep tomcat显示tomcat已经启动了。

我怎样才能启动 tomcat script -c

相关内容