오라클(Oracle) 쉘 접속

1. 오라클이 실행시키는 계정 확인

 ps -ef | grep oracle

 

oracle    3934     1  0  2018 ?        00:00:00 oracle (LOCAL=NO)
oracle    3936     1  0  2018 ?        00:00:00 oracle (LOCAL=NO)
oracle    3938     1  0  2018 ?        00:00:02 oracle (LOCAL=NO)
oracle   15325     1  0  2018 ?        00:00:00 ora_reco
oracle   15333     1  0  2018 ?        00:00:00 ora_s000
oracle   15341     1  0  2018 ?        00:04:06 ora_cjq0
oracle   15353     1  0  2018 ?        00:00:16 /home/server/oracle/product/10.2.0/db_1/bin/tnslsnr LISTENER -inherit

 

오라클 실행 계정 - oracle 

설치 경로 - /home/server/oracle/product/10.2.0/db_1/

 

2. 오라클 실행 계정 접속

 su - oracle

 

오라클 실행 계정 접속 - su -oracle

 

3. 오라클 접속

 sqlplus '/as sysdba'

 

Copyright (c) 1982, 2005, Oracle.  All rights reserved.


Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production
With the Partitioning, OLAP and Data Mining options

SQL>

 

오라클 접속 - sqlplus '/as sysdba'

+ Recent posts