오라클의 경우 서버단의 설정도 중요하지만  클라이언스 환경 변수의 영향을 받는 항목도 많다.....

날짜, 시간 타입이라든가..뭐..기타 등등......


아래는 php-fpm 환경에서 오라클 환경변수를 지정하는 예제다...


/etc/php-fpm.d/www.conf  


파일 하단에  아래와 같이 등록하여 설정할 수 있다....



[root@cca php-fpm.d]# more www.conf


; 오라클 설정 파일

env[ORACLE_HOME] =/usr/lib/oracle/11.2/client64

env[NLS_LANG] = KOREAN_KOREA.KO16MSWIN949

env[LD_LIBRARY_PATH] = /usr/include/oracle/11.2/client64/lib:$LD_LIBRARY_PATH

env[NLS_DATE_FORMAT] = "YYYY-MM-DD HH:MI:SS"

 


'배워서 남주자 > Data Base' 카테고리의 다른 글

[Mariadb] table 상세 정보 보기  (0) 2019.01.18
[MySQL & MariaDB] 기본 명령어  (0) 2018.05.23
[oracle] 오라클 실행 / 중지  (1) 2018.03.28
[oracle] Listener 관련  (0) 2018.03.28
[Postgresql] 접속 제어  (0) 2018.03.23

- sqlplus /nolog (sqlplus를 데이터베이스에 접속하지 않고 실행.)


- conn / as sysdba (관리자 계정으로 접속)


- shutdown (오라클 종료. 기존에 제대로 실행이 안되어 있을 경우 위 그림에서와 같이 에러 메세지가 뜬다.)


- startup (오라클 시작)



'배워서 남주자 > Data Base' 카테고리의 다른 글

[MySQL & MariaDB] 기본 명령어  (0) 2018.05.23
[php-fpm] Oracle 연결 환경 변수 설정.  (0) 2018.03.30
[oracle] Listener 관련  (0) 2018.03.28
[Postgresql] 접속 제어  (0) 2018.03.23
[Postgresql] 백업 / 복구  (0) 2018.03.23

오라클 리스너  상태 확인 및 구동/정지 하기



[root@orcl bin]# su - oracle                 ---->  오라클 계정으로 변경

[oracle@orcl ~]$ lsnrctl status              ---->   리스너 상태 확인 


LSNRCTL for Linux: Version 10.2.0.5.0 - Production on 28-MAR-2018 05:41:49


Copyright (c) 1991, 2010, Oracle.  All rights reserved.


Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=orcl.mycompany.com)(PORT=1521)))

STATUS of the LISTENER

------------------------

Alias                     LISTENER

Version                   TNSLSNR for Linux: Version 10.2.0.5.0 - Production

Start Date                27-MAR-2018 16:48:48

Uptime                    0 days 12 hr. 53 min. 0 sec

Trace Level               off

Security                  ON: Local OS Authentication

SNMP                      OFF

Listener Parameter File   /u01/app/oracle/product/10.2.0/db/network/admin/listener.ora

Listener Log File         /u01/app/oracle/product/10.2.0/db/network/log/listener.log

Listening Endpoints Summary...

  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=orcl.mycompany.com)(PORT=1521)))

  (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC0)))

  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=orcl.mycompany.com)(PORT=8080))(Presentation=HTTP)(Session=RAW))

Services Summary...

Service "PLSExtProc" has 1 instance(s).

  Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...

Service "orcl" has 1 instance(s).

  Instance "orcl", status READY, has 1 handler(s) for this service...

Service "orclXDB" has 1 instance(s).

  Instance "orcl", status READY, has 1 handler(s) for this service...

Service "orcl_XPT" has 1 instance(s).

  Instance "orcl", status READY, has 1 handler(s) for this service...

The command completed successfully




[oracle@orcl ~]$ lsnrctl stop    ---->   리스너 정지

[oracle@orcl ~]$ lsnrctl start    ---->   리스너 실행 

+ Recent posts