這篇文章將為大家詳細(xì)講解有關(guān)怎么用deinstall和命令行刪除Oracle數(shù)據(jù)庫軟件,小編覺得挺實(shí)用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
創(chuàng)新互聯(lián)技術(shù)團(tuán)隊(duì)十年來致力于為客戶提供做網(wǎng)站、網(wǎng)站制作、成都品牌網(wǎng)站建設(shè)、成都全網(wǎng)營銷推廣、搜索引擎SEO優(yōu)化等服務(wù)。經(jīng)過多年發(fā)展,公司擁有經(jīng)驗(yàn)豐富的技術(shù)團(tuán)隊(duì),先后服務(wù)、推廣了數(shù)千家網(wǎng)站,包括各類中小企業(yè)、企事單位、高校等機(jī)構(gòu)單位。deinstall工具是oracle提供的數(shù)據(jù)庫軟件卸載工具,使用方法可以參考官方文檔路徑:Installing and Upgrading→Database Installation Guide for Linux→ 7 Removing Oracle Database Software
具體路徑為:/tupian/20230522/remove_oracle_sw.htm Database 11g Release 2下載區(qū)域找到對應(yīng)的平臺版本,點(diǎn)擊”See All”,在新打開的頁面底部可以下載到數(shù)據(jù)庫卸載工具。
另外,使用單獨(dú)的deinstall進(jìn)行卸載的時候,必須指定-home參數(shù),查看官方文檔說明:
(4)查看數(shù)據(jù)庫實(shí)例的狀態(tài),如數(shù)據(jù)庫實(shí)例啟動,則關(guān)閉數(shù)據(jù)庫實(shí)例。
[oracle@DB074 ~]$ ps -ef | grep smon
oracle 3559 1 0 14:44 ? 00:00:00 ora_smon_cams
oracle 3662 31107 0 14:47 pts/1 00:00:00 grep smon
[oracle@DB074 ~]$ sqlplus / as sysdba
SQL*Plus: Release 11.2.0.4.0 Production on Mon Sep 11 14:47:25 2017
Copyright (c) 1982, 2013, Oracle. All rights reserved.
Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
SYS@cams>shutdown immediate;
Database closed.
Database dismounted.
ORACLE instance shut down.
SYS@cams>exit
Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
[oracle@DB074 ~]$ ps -ef | grep smon
oracle 3675 31107 0 14:47 pts/1 00:00:00 grep smon
(5)檢查確保沒有oracle進(jìn)程啟動
[oracle@DB074 ~]$ ps -ef | grep ora
root 1987 1945 0 Sep09 ? 00:01:16 hald-addon-storage: polling /dev/sr0 (every 2 sec)
oracle 3677 31107 0 14:48 pts/1 00:00:00 ps -ef
oracle 3678 31107 0 14:48 pts/1 00:00:00 grep ora
root 31106 30170 0 11:34 pts/1 00:00:00 su - oracle
oracle 31107 31106 0 11:34 pts/1 00:00:00 –bash
(6)切換到root用戶,完整刪除安裝目錄(如擔(dān)心手滑,部分操作可以在oracle用戶下完成)
[root@DB074 oracle]# cd /
[root@DB074 oracle]# rm -rf u01/
(7)將bin下面的文件刪除,如果不知道具體在哪個bin路徑下(有/usr/bin,/usr/local/bin等),可以先查找下系統(tǒng)路徑
[root@DB074 /]# find / -name oraenv
/usr/local/bin/oraenv
[root@DB074 /]# find / -name dbhome
/usr/local/bin/dbhome
[root@DB074 /]# find / -name coraenv
/usr/local/bin/coraenv
[root@DB074 /]# rm -rf /usr/local/bin/oraenv
[root@DB074 /]# rm -rf /usr/local/bin/dbhome
[root@DB074 /]# rm -rf /usr/local/bin/coraenv
(8)刪除配置文件
[root@DB074 ~]# rm -rf /etc/oraInst.loc
[root@DB074 ~]# rm -rf /opt/ORCLfmap
[root@DB074 ~]# rm -rf /etc/oratab
(9)刪除home目錄
[root@DB074 ~]# rm -rf /home/oracle
(10)刪除oracle用戶和用戶組
[root@DB074 ~]# userdel -f oracle
[root@DB074 ~]# groupdel -f oinstall
[root@DB074 ~]# groupdel -f dba
(11)檢查是否有自啟動服務(wù),進(jìn)行刪除
[root@DB074 ~]#chkconfig –list
[root@DB074 ~]#chkconfig --del XXX
(1)兩種方法都能完成數(shù)據(jù)庫軟件的刪除,使用deinstall工具的方法比較柔和,使用命令行刪除的方法比較暴力。
(2)第一種方法刪除后會有部分信息保留,如環(huán)境變量、安裝軟件、自定義目錄等;第二種方法可以對數(shù)據(jù)庫進(jìn)行完整刪除,也可以只刪除部分內(nèi)容。當(dāng)然,兩種方法沒有好壞之分,可以視情況相結(jié)合使用。
(3)第二種方法操作過程中會多次在root用戶下執(zhí)行rm -rf命令,建議用戶小心操作。
(4)文中沒有嘗試使用下載的deinstall工具進(jìn)行卸載操作,讀者可以在工作之余在測試環(huán)境中進(jìn)行嘗試。
關(guān)于“怎么用deinstall和命令行刪除Oracle數(shù)據(jù)庫軟件”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
名稱欄目:怎么用deinstall和命令行刪除Oracle數(shù)據(jù)庫軟件-創(chuàng)新互聯(lián)
轉(zhuǎn)載源于:http://aaarwkj.com/article10/gddgo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供外貿(mào)建站、微信小程序、網(wǎng)站導(dǎo)航、搜索引擎優(yōu)化、軟件開發(fā)、建站公司
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容