¿Cómo iniciar Tomcat con el comando `script -c`?

¿Cómo iniciar Tomcat con el comando `script -c`?

Quiero iniciar Tomcat con el comando:

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

Después de ejecutar el comando, la consola muestra el mensaje de que Tomcat se inició correctamente.

Pero ps -ef | grep tomcatmuestra que el gato no arranca.

Luego trato de usar scriptel comando sin -copción:

[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.

Luego ps -ef | grep tomcatmuestra que Tomcat está iniciado.

¿Cómo puedo iniciar Tomcat script -c?

información relacionada