對/etc/oratab的理解
/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.
#
#
oradb:/u01/app/oracle/product/11.2.0/db_1:N
-----------------------------------------------------------------------------------------
這個檔案是在建立資料庫例項時建立的,需要用root使用者執行root.sh,如果忘記執行在自啟動和關閉時會失敗,錯誤資訊:"/etc/oratab" is not accessible。
它記錄主機中有多少個資料庫。
在$ORACLE_HOME/bin目錄下的$ORACLE_HOME/bin/dbstart和$ORACLE_HOME/bin/dbshut需要呼叫/etc/oratab檔案,如果不存在,dbstart和dbshut將失敗。
etc/oratab 格式為: SID:ORACLE_HOME:AUTO
如果需要自動啟動資料庫,則將AUTO設為Y,在呼叫dbstart命令才生效。dbstart根據/etc/oratab中的配置來啟動相應的資料庫,
如果不用dbstart指令碼啟動資料庫,而是用自己的指令碼來啟動,根本不需要oratab檔案。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9932141/viewspace-660029/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- /etc/passwd & /etc/shadow 詳解
- ETC2420 / ETC5242 Statistical ThinkingThinking
- 針對OJ的JAVA 輸入(PAT,牛客網,杭電 etc)Java
- /etc/alternatives
- 對VUE框架的理解Vue框架
- 我對抽象的理解抽象
- 對事務的理解
- 對於BFC的理解
- 對於MVVM的理解MVVM
- Could not find or access '/etc/ansible/bin/cfssljson /etc/ansible/bin/cfsslJSON
- 說說你對this的理解
- 1. 對Vue的理解Vue
- 程式中,對鎖的理解
- 對JS閉包的理解JS
- 對hadoop之RPC的理解HadoopRPC
- 對於button元素的理解
- 對前端“價值”的理解前端
- 對AIDL和Binder的理解AI
- 對session和cookie的理解SessionCookie
- 對預編譯的理解編譯
- 自己對分頁的理解
- 對CSRF的簡單理解
- 對Java異常的理解Java
- 對Innodb中MVCC的理解MVC
- 簡述對Vuex的理解Vue
- 對javascript閉包的理解JavaScript
- 對Vue插槽slot的理解Vue
- 我對JavaScript物件的理解JavaScript物件
- 關於對Host的理解
- 對git的rebase(變基)的理解Git
- 說說你對JSBridge的理解JS
- 說說你對UML的理解
- 對於@Bean注入的新理解Bean
- 對IP地址的個人理解
- 對Transformer的一些理解ORM
- 對ThreadLocal的一些理解thread
- golang當中對select的理解Golang
- 說說我對 WSGI 的理解
- 資料庫——對索引的理解資料庫索引