Oracle啟動停止 監聽啟動停止

2021-09-01 18:50:32 字數 845 閱讀 8515

啟動oracle資料庫需要三個步驟:

1、建立例項 startup nomount

2、安裝資料庫 alter database mount;

3、開啟資料庫 alter database open;

完成以上三個步驟,可使用以下命令:

startup 是批處理形式,三步操作一起完成

startup nomount  僅建立例項

startup mount 前兩步合併啟動,之後要執行alter database open

關閉oracle資料庫

1)正常關閉 shutdown

2)  立即關閉 shutdown immediate

3)  關閉事務 shutdown transactional

4)  強行關閉 shutdown abort,當然誰都不想碰到這種情況。

監聽 (linux伺服器環境下執行,非sqlplus)

lsnrctl status   檢視監聽狀態

lsnrctl start     啟動監聽

lsnrctl stop     停止監聽

動態註冊監聽

例如,資料庫

還啟動著,這時stop監聽(

lsnrctl stop

),然後啟動(

lsnrctl start

),就需要手動註冊

這時需要在sqlplus(需要dba許可權,sqlplus / as sysdba)下,執行以下命令,動態註冊監聽:

alter system register

ORACLE 監聽服務啟動後又停止了

出現 oracleorahome81tnslistener 服務啟動後又停止了,一些服務自動停止,如果他們沒什麼可做的 出先原因 無線網絡卡獲得的ip改表了 d oracle product 10.1.0 db 2 network admin listener.ora 監聽檔案改為如下 host 值...

啟動oracle 監聽

bash 2.05 lsnrctl start lsnrctl for solaris version 9.2.0.1.0 production on 06 dec 2005 10 40 38 starting opt oracle product 9.2.0 bin tnslsnr please ...

linux啟動oracle並啟動監聽

oracle資料庫突然宕機了,需要去伺服器啟動資料庫。以前沒弄過,先來波錯誤操作 systemctl restart oracle 慣性操作。提示failed to restart oracle.service unit not found.rpm qa oracle 還是沒找到 yum list ...