3.1 oracle系統初始化
用root使用者登入,然後執行$oracle_home/root.sh進行oracle的系統初始化工作,通常一路按回車用預設值即可。
3.2 安裝網路***
3.3 修改dbstart
用任意的文字編輯器開啟 $oracle_home/bin/dbstart,將
oracle_home_listner=/ade/vikrkuma_new/oracle
改為oracle_home_listner=$oracle_home
否則網路***可能無法自動啟動。
3.4 安裝資料庫例項
編輯oracle安裝目錄裡response子目錄下的應答檔案 dbca.rsp,修改以下專案。
gdbname 資料庫全域性名稱
sid 資料庫的sid
syspassword sys使用者的初始密碼
systempassword system使用者的初始密碼
characterset資料庫字符集(中文為 zhs16gbk)
nationalcharacterset資料庫國家字符集
然後執行
$oracle_home/bin/dbca -silent -responsefile 《應答檔案的絕對路徑》 -clonetemplate
資料庫建立成功後須要註冊一些資訊,執行
$oracle_base/orainventory/orainstroot.sh
然後編輯 /etc/oratab
將:修改為
:使資料庫例項能夠自動啟動。
3.5 讓oracle執行為服務
建立檔案 /etc/init.d/oracle,輸入下列內容
#!/bin/sh
#export oracle_home=
. /etc/init.d/functions
export path=$:$oracle_home/bin
start()
stop()
case $1 in
'start')
start
retval=$?
;;'stop')
stop
retval=$?
;;'restart')
stop
start
retval=$?
;;*)
echo "usage: $0 "
exit
;;esac
#exit
然後將這個檔案賦予可執行的許可權,執行
chmod a+x /etc/init.d/oracle
讓oracle的服務在linux啟動時自動執行
ln -s /etc/init.d/oracle /etc/rc.d/rc3.d/s99oracle
ln -s /etc/init.d/oracle /etc/rc.d/rc5.d/s99oracle
這樣就可以用service來啟動和停止oracle了。
附1 oracle 10g對硬體環境的要求
物理記憶體
基本 - 512mb
推薦 - 1024mb
記憶體交換分割槽相對於物理記憶體的比例
物理記憶體1024mb~2048mb - 150%
物理記憶體2049mb~8192mb - 100%
物理記憶體大於8192mb - 75%
磁碟空間
/tmp目錄所在的分割槽至少要有400mb空閒磁碟空間。
根據安裝型別,安裝oracle伺服器軟體的分割槽至少要有1.5gb到3.5gb的空閒磁碟空間。
1.2gb磁碟空間用於資料庫預配置檔案系統儲存(可選)
附2 oracle 10g對軟體環境的要求
作業系統
red hat enterprise linux as/es 3.0 (update 4 or later)
red hat linux 4.0
suse linux enterprise server 9.0 with sp 2 or later
asianux 1.0
asianux 2.0
軟體包
x11相關的庫 (軟體包名視作業系統而定,故不一一列出)
gcc (版本至少為2.96-124)
make (版本至少為3.79)
binutils (版本至少為2.11)
openmotif (版本至少為2.1.30)
setarch (版本至少為1.3)
compat-db (版本至少為4.0.14.5)
compat-gcc (版本至少為7.3-2.96.122)
compat-gcc-c++ (版本至少為7.3-2.96.122)
compat-libstdc++ (版本至少為7.3-2.96.122)
compat-libstdc++-devel (版本至少為7.3-2.96.122)
sysstat (版本至少為5.0.5-1)
libaio (版本至少為0.3.103-3)
libaio-devel (版本至少為0.3.103-3)
在 linux x86 上安裝 oracle 資料庫 10g
自動安裝 oracle 資料庫 10g 和 red hat enterprise linux
oracle® database installation guide for linux x86
oracle資料庫靜默安裝實踐
oracle的全球化支援
oracle 10g文件庫
4 結束語
現在oracle 10g的安裝已經完成,在任何一台電腦上裝個oracle客戶端就可以對它進行管理了。
如果要解除安裝oracle,只須執行
$./runinstaller -silent -deinstall -removeallfiles -removeallpatches "remove_homes=" -responsefile 《安裝時使用的應答檔案》
Struts實現初始化工作
struts1 建立servlet,在init方法中完成要做的工作,在web.xml中配置load on startup即可。struts2 簡歷乙個filter繼承filterdispatcher,在init方法中完成要做的工作,相應的在web.xml中配置該filter即可。比較通用的做法是現實...
作業綜合練習 初始化工作
燕十八 公益php培訓 學習社群 www.zixue.it 初始化頁面 載入config.int.php 和 mysql.func.php 設定位址轉義 設定 conn 變數 連線資料庫 設定用那個資料庫,設定charset define root d www require root config...
linux 安裝 mysql的初始化工作
linux下安裝了mysql後,尤其是yum安裝方式,需要一些初始化工作。執行mysql install db這個程式,一般路徑是 usr bin mysql install db,用於初始化mysql的資料庫,生成元資料。不執行的話,會出現 can t open and lock privileg...