RedHat上发布一个应用程序

2022-08-13 17:48:26 浏览数 (1)

使用RedHat发布一个Web应用程序,随手记录一下。

代码语言:shell复制
//以root用户进入
//启动数据库
su - oracle
sqlplus / as sysdba
SQL>startup
SQL>exit

//关闭数据库
SQL>shutdown immediate

//启动监听
lsnrctl start

//停止监听
lsnrctl stop
//查看监听状态
lsnrctl status

//启动tomcat
su - root
cd /usr/local/apache-tomcat-9.0.64/bin
startup.sh

//停止tomcat
shutdown.sh

//启动apache
cd /usr/local/apache/bin
apachectl start

//停止apache
apachectl stop

//启动应用程序
cd /etc/init.d
APP start

另外,将某个程序注册为服务的方法

代码语言:shell复制
#	su -
#	chmod  x /etc/init.d/APP
#	chkconfig --add APP
#	chkconfig APP on
#	chkconfig --list APP
#	service APP start		
#	ps -ef|grep testtUser 			
#	service APP stop		

0 人点赞