標題: [資源分享] [教學] ORACLE v8.1.7 FOR Linux Red Hat Enterprise AS 3.0 安裝筆記 [打印本頁] 作者: 祐祐 時間: 2010-8-19 23:57 標題: [教學] ORACLE v8.1.7 FOR Linux Red Hat Enterprise AS 3.0 安裝筆記
*****************************************************
ORACLE v8.1.7 FOR Linux Red Hat Enterprise AS 3.0 安裝筆記
--written by Dandy
*****************************************************
23.選擇要操作的default的資料庫,有
1.Dedicated Server Mode(專用伺服器)--oracle將對每一個client分配資源,若client數目較預期少,或
client持續且長時間向server做request時.
2.Share Server Mode(共享伺服器)--oralce自動將數個client共享分配資源,適用於用戶較多時.
MTS(Multi Transaction Service)將被啟動.
若一般情況請選擇Dedicated Server Mode.
##自動啟動Listner
if [ -f $ORACLE_HOME/bin/lsnrctl ] ; then
$ORACLE_HOME/bin/lsnrctl start
fi
##自動啟動Oracle Apache Jserv
if [ -f $ORACLE_HOME/Apache/Apache/bin/httpdsctl ] ; then
$ORACLE_HOME/Apache/Apache/bin/httpdsctl start
fi
<在/oracle/8.1.7/bin/dbshut 加入>
##自動關閉Listner
if [ -f $ORACLE_HOME/bin/lsnrctl ] ; then
$ORACLE_HOME/bin/lsnrctl stop
fi
##自動關閉Oracle Apache Jserv
if [ -f $ORACLE_HOME/Apache/Apache/bin/httpdsctl ] ; then
$ORACLE_HOME/Apache/Apache/bin/httpdsctl stop
fi
##清除連線記錄
rm -f @ORACLE_HOME/network/log/listener.log
42.修改kernel參數
Oracle 使用Linux的shared memory來運行SGA,所以要調整kernel參數符合SGA,
$ ipcs -al
------ Shared Memory Limits --------
max number of segments = 4096
max seg size (kbytes) = 32768 <--------------------------linux預設值是32Mb
max total shared memory (kbytes) = 8388608
min seg size (bytes) = 1
------ Semaphore Limits --------
max number of arrays = 128
max semaphores per array = 250
max semaphores system wide = 32000
max ops per semop call = 32
semaphore max value = 32767
------ Messages: Limits --------
max queues system wide = 16
max size of message (bytes) = 8192
default max size of queue (bytes) = 16384