linux開機啟動oracle

2021-09-01 19:39:53 字數 1532 閱讀 2674

第一步:

新建/etc/init.d/oralce檔案(檔名就是服務名)。檔案裡的內容如下:

#!/bin/sh

# comments to support chkconfig on redhat linux

# chkconfig: 2345 64 36

# description: oracle database engine.

# comments to support lsb init script conventions

### begin init info

# provides: oracle

# required-start: $local_fs $network $remote_fs

# should-start: ypbind nscd ldap ntpd xntpd

# required-stop: $local_fs $network $remote_fs

# default-start: 2 3 4 5

# default-stop: 0 1 6

# short-description: start and stop oracle

# description: oracle database engine.

### end init info

# source function library.

. /etc/rc.d/init.d/functions

name=oracle

desc="$name daemon"

if [ -z "$oracle_home" ]; then

source /home/oracle/.bash_profile

fido_start()

do_stop()

case "$1" in

start)

echo -n "starting $desc: $name"

do_start

echo "."

;;stop)

echo -n "stopping $desc: $name"

do_stop

echo "."

;;restart)

echo -n "restarting $desc: $name"

do_stop

do_start

echo "."

;;*) echo "usage: $scriptname " >&2

exit 3

;;esac

exit 0

第二步:設定開機啟動,在終端執行以下命令:

chkconfig --add oracle

chkconfig oracle on

service oracle start

service oracle stop
如果要關閉開機啟動,在終端執行以下命令:

chkconfig oracle off

linux中oracle開機啟動

bin bash chkconfig 345 99 10 description oracle 開機自動執行 方法一 oradb檔案使用 特點 複雜 功能完善 部署麻煩 一 使用root使用者修改 etc oratab 檔案 vi etc oratab orcl u01 oracle n oracl...

Linux開機自動啟動ORACLE

oracle home listner oracle home,命令如下 oracle oracle11g vi oracle home bin dbstart oracle oracle11g vi oracle home bin dbshut 修改後儲存退出,第乙個問題已解決 2.如何在linu...

oracle 開機啟動

bin bash chkconfig 345 99 10 description oracle 開機自動執行 方法一 oradb檔案使用 特點 複雜 功能完善 部署麻煩 一 使用root使用者修改 etc oratab 檔案 vi etc oratab orcl u01 oracle n oracl...