Linux下將Weblogic設定為開機啟動

2022-08-26 19:30:15 字數 2509 閱讀 8577

cd /etc/rc.d/init.d/

vi weblogic

#!/bin/

bash

# chkconfig:

34520

80# description: weblogic server auto start

/stop script

# /etc/rc.d/init.d/

weblogic

# please edit the variable

export bea_base

=/home/fairy/oracle/

middleware

export bea_home

=$bea_base/user_projects/domains/

base_domain

export bea_log

=$bea_home/weblogic.log

export path

=$path:$bea_home

bea_ownr

="fairy"

# if the executables do not exist --

display error if[

! -f $bea_home/startweblogic.sh -o ! -d $bea_home

]then

echo "weblogic startup: cannot start"

exit

1fi

# depending

on parameter --

startup, shutdown, restart

case "$1" in

start)

echo

-n "starting weblogic,log

file

$bea_log: "

touch

/var

/lock/

weblogic

su $bea_ownr

-c "cd $; nohup ./startweblogic.sh > $bea_log 2

>&1&

" echo "ok"

;; stop)

echo

-n "shutdown

weblogic: "

rm -f /

var/lock/

weblogic

su $bea_oownr

-c "cd $/bin; ./stopweblogic.sh >>

$bea_log"

echo "ok"

;; reload

|restart)

$0stop

$0start

;; *

) echo "usage: `basename $

0` start|stop|restart|

reload"

exit

1esac

exit

0

按esc,shift+

q退出編輯,輸入!wq 儲存退出,(當遇到無法退出的情況時,

解決方案:

1..儲存的時候用:w !sudo tee %

2. 輸入密碼即可

3.嘗試出入以下命令wq!;q;q! ;x,x!退出

賦予可執行許可權

chmod

+x weblogic

新增到服務列表中

chkconfig

--add weblogic

為日誌新增許可權

touch /var/log/weblogic.log

chown weblogic.weblogic /var/log/weblogic.log

檢查是否新增成功

chkconfig

--list | grep weblogic

weblogic

0:關閉1:關閉2:關閉3:啟用4:啟用5:啟用6:關閉

開機或重啟weblogic應用伺服器weblogic服務會自動啟動。 

停weblogic服務

service weblogic stop(或

/etc/rc.d/init.d/

weblogic stop)

shutdown

weblogic: ok

啟動weblogic服務

service weblogic start(或

/etc/rc.d/init.d/

weblogic start)

starting weblogic,

logfile

/weblogic/bea/user_projects/domains/csky/weblogic.log: ok

Linux下檢視weblogic日誌

使用tail f catalina.out命令檢視後台日誌 tail f nohup.out 想看歷史的n行log資訊 1000行 tail 1000 nohup.out server.log server.log 日誌的路徑一般在 domainname servers servername log...

Linux端將weblogic做成服務

weblogic在linux端安裝完畢後,啟動,關閉weblogic比較麻煩,可以通過配置,將weblogic註冊成服務,只要簡單的服務start,stop即可開關服務,十分方便。cd opt vim weblogic 將下列內容拷貝到檔案中 bin bash chkconfig 345 81 05...

Linux下的WebLogic安裝部署

一 軟體安裝 1.安裝前的準備工作 1.1 首先請確認您要安裝的weblogic版本所在的平台已通過了bea的認證,完整的認證平台列表請參考 2.4.7 確認安裝路徑 choose product directory 1 yes,use this product directory home3 we...