Oracle手动安装和卸载,这是最全的一篇了( 二 )

9.静默安装Oracle 11gR2操作用户:oracle操作目录:/home/oracle/database
./runInstaller -silent -ignoreSysPrereqs -responseFile /home/oracle/db_install.rsp接下来,就是默默的等待Oracle自行安装了,等待一段时间后,如果输出如下信息,则表明Oracle数据库已经安装成功 。
The following configuration scripts need to be executed as the "root" user.#!/bin/sh#Root scripts to run/home/oracle/tools/oraInventory/orainstRoot.sh/home/oracle/tools/oracle11g/product/11.2.0/dbhome_1/root.shTo execute the configuration scripts:        1. Open a terminal window         2. Log in as "root"         3. Run the scripts         4. Return to this window and hit "Enter" key to continueSuccessfully Setup Software.10.安装完成操作用户:root
根据上一步完成信息提示,执行以下两行命令,具体位置需要根据你的安装位置决定:
/home/oracle/tools/oraInventory/orainstRoot.sh/home/oracle/tools/oracle11g/product/11.2.0/dbhome_1/root.sh11.创建连接用户操作用户:oracle
sqlplus /nologconn /as sysdbastartup接下来,执行如下命令 。
alter user system identified by system;alter user sys identified by sys;创建连接用户 。
create user SYNC identified by SYNC;grant connect,resource,dba to SYNC;验证安装结果1.启动数据库启动已经安装的数据库orcl 。
操作用户oracle
sqlplus /nolog使用dba权限连接Oralce
connect / as sysdba启动数据库
startup确认启动结果:
ORACLE instance started.Total System Global Area  534462464 bytesFixed Size                  2215064 bytesVariable Size            373293928 bytesDatabase Buffers          150994944 bytesRedo Buffers                7958528 bytesDatabase mounted.Database opened.2.验证数据库这里,我们使用Navicat连接Oracle数据库,如下所示 。

Oracle手动安装和卸载,这是最全的一篇了

文章插图
 
这里,输入的用户名为SYNC,密码为SYNC 。
接下来,点击“连接测试”,如下所示 。
Oracle手动安装和卸载,这是最全的一篇了

文章插图
 
可以看到,Oracle数据库连接成功 。
手动卸载Oracle1.停止监听[oracle@binghe101 ~]$ lsnrctl stop[oracle@binghe101 ~]$ lsnrctl status2.停止数据库[oracle@binghe101 ~]$ sqlplus / as sysdbaSQL> shutdown immediate3.删除oracle的inventory 目录[root@binghe101 App]# rm -rf /home/oracle/tools/oraInventory/4.删除Oracle的base目录下所有的目录[root@binghe101 oracle]# rm -rf /home/oracle/tools/oracle11g/*5.删除临时目录/tmp[root@binghe101 tmp]# rm -rf /tmp/*6.删除Oracle的配置文件[root@binghe101 tmp]# rm -f /etc/ora*7.删除oracle产生命令[root@binghe101 tmp]# rm -f /usr/local/bin/*8.其他的文件[root@binghe101 .oracle]# rm -rf /usr/tmp/.oracle/9.删除用户和组[root@binghe101 tmp]# userdel -r oracle[root@binghe101 tmp]# groupdel oper[root@binghe101 tmp]# groupdel dba    [root@binghe101 tmp]# groupdel oinstall[root@binghe101 tmp]# groupdel asmadmin10.撤销oracle的资源限制文件[root@binghe101 tmp]# vi /etc/security/limits.conf11.内核参数[root@binghe101 tmp]# vi /etc/sysctl.conf [root@binghe101 tmp]# sysctl -p12.删除oracle base[root@binghe101 ~]# rm -rf /home/oracle/tools/oracle11g


推荐阅读