一.启动Oracle数据库和监听器 首先切换到Oracle专有用户: [root@NJZYY06 ~]# su - oracle [oracle@NJZYY06 ~]$ 1.启动数据库: [oracle@NJZYY06 ~]$ sqlplus /nolog SQL*Plus: Release Production on Wed Sep :: Copyright (c) , , Oracle. All rights reserved. SQL> connect /as sysdba Connect…
Linux下启动Oracle服务和监听程序启动和关闭步骤整理如下: 1.安装oracle: 2.创建oracle系统用户: 3./home/oracle下面的.bash_profile添加几个环境变量:ORACLE_SID,ORACLE_BASE,ORACLE_HOME: ? 1 2 3 export ORACLE_SID=test export ORACLE_BASE=oracle_install_dir export ORACLE_HOME=xxx 4.启动步骤:注意$代表shell命令提示…
检查监听器状态:C:\>lsnrctl statusLSNRCTL for 32-bit Windows: Version 9.2.0.1.0 - Production on 30-6月 -2009 21:08:04Copyright (c) 1991, 2002, Oracle Corporation. All rights reserved.正在连接到 (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))TNS-12541: TNS:无监听…
以redflag(redhat /centos)linux下的 oracle 10g 为例: 如果oracle安装和配置都没有问题的话: 依次执行以下代码即可启动oracle服务. #su - oracle $sqlplus / as sysdba >startup >exit $lsnrctl start $ps -ef|grep oracle ps -ef|grep oracle为查看oracle服务,如果现实列表服务一般表示oracle服务已经启动.…
[root@csyang ~]# su - oracle #首先su到oracle用户 [oracle@csyang ~]$ sqlplus sys/passwd as sysdba #使用sys用户登录sqlplus SQL> startup #使用startup命令启动ORACLE SQL> exit #退出sqlplus [oracle@csyang ~]$ ps -ef|grep oracle #查看oracle进程 [oracle@csyang ~]$ lsnrctl stat #查…
$ su – oracle $ sqlplus / nolog sql> conn / as sysdba sql> startup                 #启动Oracle,需设置好环境变量 sql> quit                      #退出     $ lsnrctl start               #启动监听器 #关闭oracle $ su – oracle $ sqlplus  /nolog sql>shutdown $ lsnrctl…
oracle数据库是重量级的,其管理非常复杂,将其在linux平台上的启动和关闭步骤整理一下. 安装完毕oracle以后,需要创建oracle系统用户,并在/home/oracle下面的.bash_profile添加几个环境变量:ORACLE_SID,ORACLE_BASE,ORACLE_HOME.比如: export ORACLE_SID=test  export ORACLE_BASE=oracle_install_dir export ORACLE_HOME=xxx 启动步骤:注意$代表s…
切换到oracle用户 su - oracle   启动监听 lsnrctl start   确认是不是想要启动的oracle实例 echo $ORACLE_SID   如果不是,切换SID  oracle切换SID: vi .bash_profile 修改 export ORACLE_SID=dg1 保存退出   使修改生效 . ~/.bash_profile   echo $ORACLE_SID查看   连接sqlplus sqlplus '/as sysdba'   启动 startup…
1.安装依赖 sudo yum install binutils compat-libstdc++-33 compat-libstdc++-33.i686 elfutils-libelf elfutils-libelf-devel gcc gcc-c++ glibc glibc.i686 glibc-common glibc-devel glibc-devel.i686 glibc-headers ksh libaio libaio.i686 libaio-devel libaio-devel.…
Oracle版本:Oracle 11g 1.确定自己的Linux版本: [root@localhost ~]#uname -r 2.6.32-431.el6.x86_64 2.6.32-431.el6.x86_64,即Linux 6 2.安装Oracleasm Kernel: [root@localhost ~]# yum install kmod-oracleasm 3.下载两个安装包:oracleasmlib和oracleasm-support [root@localhost ~]#wget…