配置solaris 10_oracle10g_dbstart_dbshut自動啟停庫
1,更改配置如下內容:
bash-3.00# more /var/opt/oracle/oratab --linux 在/etc/oratab
#
# This file is used by ORACLE utilities. It is created by root.sh
# and updated by the Database Configuration Assistant when creating
# a database.
# A colon, ':', is used as the field terminator. A new line terminates
# the entry. Lines beginning with a pound sign, '#', are comments.
#
# Entries are of the form.:
# $ORACLE_SID:$ORACLE_HOME:
#
# The first and second fields are the system identifier and home
# directory of the database respectively. The third filed indicates
# to the dbstart utility that the database should , "Y", or should not,
# "N", be brought up at system boot time.
#
# Multiple entries with the same $ORACLE_SID are not allowed.
#
#
target:/orainstall/oracle/product/10.2.0/db_1:Y
2,以oracle使用者vi 下列檔案相關內容
分兩部分:
$ORACLE_HOME/bin/dbstart
ORATAB變數為/var/opt/oracle/oratab
ORACLE_HOME_LISTNER變數為$ORACLE_HOME
$ORACLE_HOME/bin/dbshut同上相關變數(同dbstart)
3,以root使用者編輯如下內容vi /etc/init.d/dbstart 和dbshut
bash-3.00# more /etc/init.d/dbstart
su - oracle -c "/orainstall/oracle/product/10.2.0/db_1/bin/dbstart"
su - oracle -c "/orainstall/oracle/product/10.2.0/db_1/bin/lsnrctl start"
bash-3.00# more /etc/init.d/dbshut
su - oracle -c "/orainstall/oracle/product/10.2.0/db_1/bin/dbshut"
su - oracle -c "/orainstall/oracle/product/10.2.0/db_1/bin/lsnrctl stop"
4,以root使用者給第3步建立的檔案授權
chmod 755 /etc/init.d/db*
5,到相應的os初始化指令碼目錄下(啟與關os),進行ln操作
cd /etc/rc2.d ---啟動os
ln -s /etc/init.d/dbstart S99oracle
cd /etc/rc0.d ---關閉os
ln -s /etc/init.d/dbshut K01oracle
bash-3.00# more /etc/rc2.d/S99oracle
su - oracle -c "/orainstall/oracle/product/10.2.0/db_1/bin/dbstart"
su - oracle -c "/orainstall/oracle/product/10.2.0/db_1/bin/lsnrctl start"
bash-3.00# more /etc/rc0.d/K01oracle
su - oracle -c "/orainstall/oracle/product/10.2.0/db_1/bin/dbshut"
su - oracle -c "/orainstall/oracle/product/10.2.0/db_1/bin/lsnrctl start"
小結:
1,oracle與os結合相當緊密,要加深對於os的理解,/etc/init.d與/etc/rcx.d的作用與區別
2,學習下dbshut and dbstart的shell
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9240380/viewspace-621052/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Solaris下設定Oracle自啟動Oracle
- 4 配置Oracle資料庫自動啟動Oracle資料庫
- oracle10g在solaris的自啟動Oracle
- 突然停電,資料庫不能啟動資料庫
- kafka部署配置與啟停Kafka
- solaris 10下的oracle 10g 自動啟動指令碼Oracle 10g指令碼
- Ubuntu自動啟動配置指令碼Ubuntu指令碼
- oracle配置開機自啟動Oracle
- 配置作業系統重啟後,Oracle資料庫和監聽自動啟動作業系統Oracle資料庫
- Linux開機自啟動配置Linux
- 配置單例項自動重啟單例
- linux 配置oracle+asm自動啟動LinuxOracleASM
- springboot 配置熱啟動 不需重啟自動部署Spring Boot
- 3.1.5.8 隨系統啟動自動啟動資料庫資料庫
- 資料庫自動啟動關閉資料庫
- springboot自動配置原理和啟動流程Spring Boot
- oswatch 隨 OS 自動啟動配置 (Linux)Linux
- Sybase 資料庫啟停指令碼資料庫指令碼
- Linux下oracle庫自啟動LinuxOracle
- oracle資料庫開機自動啟動Oracle資料庫
- Debian配置Oracle 10g自啟動Oracle 10g
- 配置Oracle資料庫和監聽隨Linux系統自啟動(轉)Oracle資料庫Linux
- 【AUTO】配置Oracle資料庫和監聽隨Linux系統自啟動Oracle資料庫Linux
- solaris DNS 配置DNS
- Solaris IPMP 配置
- solaris啟動ftp和telnet服務FTP
- Linux 下 自動啟動oracle資料配置說明LinuxOracle
- 3.1.3 關於資料庫服務自動啟動資料庫
- 什麼原因造成資料庫不能自動啟動!資料庫
- 4.1.3 使用 Oracle Restart 元件啟停資料庫OracleREST元件資料庫
- solaris取消或啟動圖形介面登陸
- centos 自動啟動指令碼和自啟動服務CentOS指令碼
- Solaris 10配置VNCServerVNCServer
- solaris的dns配置DNS
- Solaris下配置ASMASM
- oracle 10g rac資料庫不能自動啟動Oracle 10g資料庫
- CentOS 7 - 配置服務實現開機自啟動CentOS
- 在Linux上配置Resin 80埠自啟動(轉)Linux