CentOS 添加开机自启动+普通用户调用方法 Weblogic (转)
该文章原作者网址:http://linux.52zhe.info/read.php/134.htm
所需软件下载路径:
http://commerce.bea.com/showallversions.jsp?family=WLSCH
文件名:server920_zh_CN_linux32.bin
安装比较简单,主要是服务的管理,本文集成了开机自启动的脚本。以及普通用户weblogic的调用管理。
1:以root添加用户,创建BEA_BASE
groupaddbea
useradd-gbea-mweblogic
mkdir/opt/bea
chownbea.weblogic/opt/bea
2:安装Weblogic,添加域。
给安装文件搞个地方,弄个执行权限就安装吧。很简单的,都是图形的。如果以字符模式安装,加上参数-mode=console
安装后,无需执行quickstart.sh,直接创建新的域/opt/bea/weblogic92/common/bin/config.sh
3:添加开机自启动
在Root的家目录,编写以下脚本文件weblogic.
#!/bin/bash
#
#chkconfig:3458105
#description:WeblogicServer
#/etc/init.d/weblogic
#
#Run-levelStartupscriptfortheWebLogicServer
#PleaseedittheVariable
exportBEA_BASE=/opt/bea
exportBEA_HOME=$BEA_BASE/user_projects/domains/yourdomain
exportBEA_LOG=$BEA_BASE/weblogic.log
exportPATH=$PATH:$BEA_HOME/bin
BEA_OWNR="weblogic"
#iftheexecutablesdonotexist--displayerror
if[!-f$BEA_HOME/bin/startWebLogic.sh-o!-d$BEA_HOME]
then
echo"WebLogicstartup:cannotstart"
exit1
fi
#dependingonparameter--startup,shutdown,restart
case"$1"in
start)
echo-n"StartingWebLogic:logfile$BEA_LOG"
touch/var/lock/weblogic
su$BEA_OWNR-c"nohup$BEA_HOME/bin/startWebLogic.sh>$BEA_LOG2>&1&"
echo"OK"
;;
stop)
echo-n"ShutdownWebLogic:"
rm-f/var/lock/weblogic
su$BEA_OWNR-c"$BEA_HOME/bin/stopWebLogic.sh>>$BEA_LOG"
echo"OK"
;;
reload|restart)
$0stop
$0start
;;
*)
echo"Usage:`basename$0`start|stop|restart|reload"
exit1
esac
exit0
添加到自启动/etc/rcX.d。
chmod700weblogic
cpweblogic/etc/rc.d/init.d
chkconfig--addweblogic
chkconfig--list|grepweblogic
调用方法:
1:serviceweblogicstart|stop|restart|reload
2:/etc/init.d/weblogicstart|stop|restart|reload
以上只是完成了一半。当Weblogic这个系统用户想登陆到系统内的时候,是没有办法直接调用/etc/init.d/weblogic这个脚本的。
以下是添加weblogic的调用方法。
描述:首先在主创建目录$HOME/bin,添加新的脚本。并且修改自己的.bash_profile文件。
1:修改.bash_profile,添加一行,制定字符集,免得以后通过WEB登陆的时候,一半英文,一半中文的。
exportLANG="zh_CN.UTF-8"
2:创建目录,编写脚本
[weblogic@server~]$mkdir$HOME/bin
[weblogic@server~]$cd~/bin/
[weblogic@server~]$viweblogic
#!/bin/bash
#
#chkconfig:23458105
#description:WeblogicServer
#/etc/init.d/weblogic
#
#Run-levelStartupscriptfortheWebLogicServer
#PleaseedittheVariable
exportBEA_BASE=/opt/bea
exportBEA_HOME=$BEA_BASE/user_projects/domains/fundweb.jifufund.com.cn
exportBEA_LOG=$BEA_BASE/weblogic.log
exportPATH=$PATH:$BEA_HOME/bin
BEA_OWNR="weblogic"
#iftheexecutablesdonotexist--displayerror
if[!-f$BEA_HOME/bin/startWebLogic.sh-o!-d$BEA_HOME]
then
echo"WebLogicstartup:cannotstart"
exit1
fi
#dependingonparameter--startup,shutdown,restart
case"$1"in
start)
echo-n"StartingWebLogic:logfile$BEA_LOG"
nohup$BEA_HOME/bin/startWebLogic.sh>$BEA_LOG2>&1&
echo"OK"
;;
stop)
echo-n"ShutdownWebLogic:"
$BEA_HOME/bin/stopWebLogic.sh>>$BEA_LOG
echo"OK"
;;
reload|restart)
$0stop
$0start
;;
*)
echo"Usage:`basename$0`start|stop|restart|reload"
exit1
esac
exit0
[weblogic@fundwebbin]$chmod700weblogic