Linux系统轻松卸载Oracle数据库(linux卸载oracle)
随着随睗着物联网、云计算以及大数据的蓬勃发展,许多企业及大型公司都需要用到Oracle数据库作为数据库支撑,但在使用过程中,也许经常会遇到需要卸载Oracle数据库操作系统的时候,对于初次使用Oracle数据库的用户来说,不知道如何从Linux系统命令界面卸载它,下面平台和我一起来简要的介绍一下,如何从Linux系统命令界面卸载Oracle数据库。
首先,在Linux系统命令行中输入ps -ef| grep pmon来检测是否Oracle数据库已经启动,例如:
$ps -ef| grep pmon
oracle 1305 1 0 17:16 ? 00:00:00oramsPNOTSRVC_vcdb
下一步,通过输入shutdown immediate关闭Oracle数据库:
$shutdown immediate
Database closed.
接着,把相关的实例文件都删除(比如oracle文件夹和多个前缀为ora的文件夹):
rm -rf /path/to/oracle
接下来,在text文件内输入内容”/etc/oratab”,例如:
$ echo “#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 separator.A new line terminates
#the entry. Lines beginning with a pound sign, ‘#’,are comments
#
#Entries are of the form:
#
# $ORACLE_SID:$ORACLE_HOME::
#
# where $ORACLE_SID corresponds to an SID in the oratab file
# and $ORACLE_HOME is an ORACLE_HOME directory.
# The ‘:N’ sets ORACLE_SID to not mount and open
# the database on a restart inthe rc.d init system.
#
# The ‘:Y’ sets ORACLE_SID to mount and open
# the database on a restart in the rc.d init system.
#
#Adding an entry to the /etc/oratab file as follows:
#oracl:ALL:N:
#will indicate to the rc.d init system that the database
#”oracl” should not be mounted and opened on startup.
#
#*IMPORTANT*: Change the fields below to the correct values for
#your database. See actual entries below:
#N is for no
#Y is for yes
vcdb:/u01/app/oracle/product/12.2.0.2/db_1:N
” > /etc/oratab
最后,重启系统以完成卸载Oracle数据库操作:
reboot
以上就是正确地从Linux系统命令界面卸载Oracle数据库所需要的步骤和步骤,只需短短几分钟的时间,就能够把过去令人头痛的卸载Oracle数据库,变得一丝不苟,对于不擅长操作Linux系统命令行的人来说,要正确操作Oracle数据库也是同样重要的,这样可以有效避免卸载操作出现的一些问题。