repo.or.cz
/
i18n-zh.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
AIX 6.1 6100-01 SP1 released.
[i18n-zh.git]
/
cauchy
/
init.d
/
oracle
blob
fe55e1c1c70c9ee086f44d351a91c5822af66261
1
#! /bin/sh
2
#
3
# start/stop oracle server.
4
#
5
6
### BEGIN INIT INFO
7
# Provides: oracle
8
# Default-Start: S 2 3 4 5
9
# Default-Stop: 0 1 6
10
### END INIT INFO
11
12
case
"
$1
"
in
13
start
)
14
su
-
oracle
-c
'lsnrctl start'
15
su
-
oracle
-c
'dbstart'
16
;;
17
stop
)
18
su
-
oracle
-c
'lsnrctl stop'
19
su
-
oracle
-c
'dbshut'
20
;;
21
restart
)
22
$0
stop
23
sleep
3
24
$0
start
25
;;
26
*)
27
echo
"Usage:
$0
{start|stop|restart}"
>&
2
28
exit
1
29
;;
30
esac
31
32
exit
0