티스토리 뷰
반응형
리눅스에 오라클이 설치되어있다는 전제하에 포스팅하도록 하겠습니다.
리눅스 쉘에서 아래 순번대로 진행하시면 됩니다.
##1. oracle 계정 전환하기
[root@localhost ~]# su -l oracle
마지막 로그인: 월 8월 5 18:23:20 KST 2024 일시 pts/1
##2. 리스너 stop 하기
[oracle@localhost ~]$ lsnrctl stop
LSNRCTL for Linux: Version 11.2.0.4.0 - Production on 06-AUG-2024 08:32:30
Copyright (c) 1991, 2013, Oracle. All rights reserved.
Connecting to ...
The command completed successfully
##3. sqlplus 접속
[oracle@localhost ~]$ sqlplus /nolog
SQL*Plus: Release 11.2.0.4.0 Production on Tue Aug 6 08:33:10 2024
Copyright (c) 1982, 2013, Oracle. All rights reserved.
##4. sysdba 접속
SQL> connect /as sysdba
Connected.
##5. 데이터베이스 강제 셧다운
SQL> shutdown abort
# ... 셧다운 메세지
##6. 데이터베이스 재기동
SQL> startup
# ... 시작 메세지
##7. sqlplus 나가기
SQL> exit
Disconnected from Oracle Database 11g Release 11.2.0.4.0 - 64bit Production
##8. 오라클 리스너 재시작
[oracle@localhost ~]$ lsnrctl start
LSNRCTL for Linux: Version 11.2.0.4.0 - Production on 06-AUG-2024 08:35:06
Copyright (c) 1991, 2013, Oracle. All rights reserved.
Starting /oracle/product/.../tnslsnr: please wait...
TNSLSNR for Linux: Version 11.2.0.4.0 - Production
System parameter file is ...
Log messages written to ...
Listening on: ...
Listening on: ...
Connecting to ...
STATUS of the LISTENER
------------------------
Alias LISTENER
Version TNSLSNR for Linux: Version 11.2.0.4.0 - Production
Start Date 06-AUG-2024 08:35:06
Uptime 0 days 0 hr. 0 min. 0 sec
Trace Level off
Security ON: Local OS Authentication
SNMP ON
Listener Parameter File ...
Listener Log File ...
Listening Endpoints Summary...
Services Summary...
Service "..." has 1 instance(s).
Instance "...", status UNKNOWN, has 1 handler(s) for this service...
The command completed successfully
정상적으로 설치되어있는 환경이면 위 명령어로 잘 수행 되는 것을 확인 할 수 있습니다.
참고블로그
반응형
'Database > Oracle' 카테고리의 다른 글
[oracle] 오라클 ODAC 설치 및 연동 (64비트) (0) | 2024.07.25 |
---|---|
[Oracle] ORDER BY 정렬 특정값 마지막으로 정렬시키기. (0) | 2024.05.09 |
[ORACLE] 분기 구하기 (0) | 2022.12.29 |
댓글