Oracle Linux下启动Oracle服务和监听程序

介绍在Oracle Linux 6中启动oracle实例和监听服务.这里注意, 启动任务时, 需要使用oracle用户, 如果不是oracle用户, 使用su - oracle命令切换到oracle用户 。 Oracle Linux 6;红帽6.5;CentOS6.5操作相同 。
需要这些哦
Oracle Linux 6;红帽6.5;CentOS6.5
Oracle 11G已经安装完当作
PL/SQL developer
vi
方式/
1以oracle用户登录系统, 若是是root用户, 利用su - oracle切换用户

Oracle Linux下启动Oracle服务和监听程序

文章插图

2以oracle用户cd到oracle的bin目次,
cd $ORACLE_HOME/bin, 如下:
[oracle@localhost ~]$ cd $ORACLE_HOME/bin
[oracle@localhost bin]$ pwd
/home/oracle/app/oracle/product/11.2.0/dbhome_1/bin
[oracle@localhost bin]$ 
Oracle Linux下启动Oracle服务和监听程序

文章插图

3以nolog体例运行sqlplus, 如下
[oracle@localhost bin]$ sqlplus /nolog
SQL*Plus: Release 11.2.0.1.0 Production on Thu Nov 26 14:02:52 2015
Copyright (c) 1982, 2009, Oracle.  All rights reserved.
SQL> 
Oracle Linux下启动Oracle服务和监听程序

文章插图

4以sysdba毗连数据库, 如下
SQL> conn /as sysdba
Oracle Linux下启动Oracle服务和监听程序

文章插图

5输入用户名sys 和暗码
Oracle Linux下启动Oracle服务和监听程序

文章插图

6启动数据库实例, 如下
SQL> startup;
期待半晌, 比及database opened就是打开数据库实例当作功了 。
Oracle Linux下启动Oracle服务和监听程序

文章插图

7利用号令shutdown abort  ;或者  shutdown immediate ; 封闭数据库
Oracle Linux下启动Oracle服务和监听程序

文章插图

8退出数据库毗连, 如下:
SQL> exit
Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options

9以oracle用户cd到oracle的bin目次,
cd $ORACLE_HOME/bin, 如下:
[oracle@localhost ~]$ cd $ORACLE_HOME/bin
[oracle@localhost bin]$ pwd
/home/oracle/app/oracle/product/11.2.0/dbhome_1/bin
[oracle@localhost bin]$ 

10启动数据库监听办事, 如下:
[oracle@localhost bin]$ lsnrctl start
LSNRCTL for Linux: Version 11.2.0.1.0 - Production on 26-NOV-2015 14:07:10
Copyright (c) 1991, 2009, Oracle.  All rights reserved.
TNS-01106: Listener using listener name LISTENER has already been started

11若是oracle用户的情况变量没有设置装备摆设, [oracle@localhost ~]$ vi .bash_profile, 添加如下内容:
 .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
        . ~/.bashrc
fi
# User specific environment and startup programs
umask 022
ORACLE_BASE=/home/oracle/app/oracle/
export ORACLE_BASE
ORACLE_HOEM=/home/oracle/app/oracle/product/11.2.0/dbhome_1/

推荐阅读