'error'에 해당되는 글 2건

  1. 2020.10.19 Eclipse의 pom.xml오류
  2. 2020.09.18 ORA-00845: MEMORY_TARGET not supported on this system

Eclipse사용 중 특정 프로젝트의 pom.xml에서 첫문단 <?xml version="1.0" encoding="UTF-8"?> 오류발생 시 아래와 같이 처리

 

1. m2e 커넥터 설치

참고 : download.eclipse.org/m2e-wtp/releases/1.4/

 

Eclipse software repository | The Eclipse Foundation

The Eclipse Foundation - home to a global community, the Eclipse IDE, Jakarta EE and over 360 open source projects, including runtimes, tools and frameworks.

download.eclipse.org

또는

2. maven-jar-plugin 다운그레이드

1
2
3
4
<properties>
    <!-- ... -->
    <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
</properties>
cs

pom.xml에 추가

참고 : stackoverflow.com/questions/56455851/maven-pom-xml-problem-unknown-error-at-top-line-xml-version-1-0-encoding

 

Maven POM.xml problem - Unknown error at top line ( )

I am setting up a project in STS with Spring starter project and added required dependencies like spring security and JSP. But the top line of pom file throwing an error as Unknown Can anybody he...

stackoverflow.com

 

 

 

Posted by 셋부터넷
,

[ 에러 사항 ]

- 증상 1번

# 일반 사용자로 접속시 에러 발생

$ sqlplus ID/PW@SID

 

SQL*Plus: Release 11.2.0.1.0 Production on Fri Jul 11 15:12:50 2014

 

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

 

ERROR:

ORA-12514: TNS:listener does not currently know of service requested in connect descriptor

 

- 증상 2번

$ 인스턴스 실행 시 아래와 같은 에러 발생

$ sqlplus /nolog

 

SQL*Plus: Release 11.2.0.1.0 Production on Fri Jul 11 15:41:55 2014

 

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

 

SQL> connect orcl as sysdba

Enter password: 

Connected to an idle instance.

SQL> startup

ORA-00845: MEMORY_TARGET not supported on this system

 

 

[ 원인 ]

오라클 11g에서 사용하는 AMM(automatic memory management)의 할당 메모리가 적다(memory_max_target,memory_target)

아래 명령어로 확인 시 결과가 나와야한다. 

SQL> show parameter memory

 

[ 해결방법 ]

- 확인 -

#df로 확인 시 /dev/shm할당 메모리를 확인한다. 가용 메모리가 충분한데도 에러가 발생한다.

# df -h

tmpfs                  32G   12G   21G  36% /dev/shm

 

- 조치 -

# 실제 메모리에 등록될 데이터 용량이 더 많은것이다. 충분히 늘려준다.

# mount -t tmpfs shmfs -o size=48g,remount /dev/shm

 

- 인스턴스 실행 -

$ sqlplus /nolog
SQL> connect orcl as sysdba

Enter password: 

Connected to an idle instance.

SQL> startup

ORACLE instance started.

 

Total System Global Area 2.6991E+10 bytes

Fixed Size                  2213976 bytes

Variable Size            2.5501E+10 bytes

Database Buffers         1342177280 bytes

Redo Buffers              145174528 bytes

Database mounted.

Database opened.

SQL> show parameter memory

 

NAME                                 TYPE        VALUE

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

hi_shared_memory_address             integer     0

memory_max_target                    big integer 25856M

memory_target                        big integer 25856M

shared_memory_address                integer     0

SQL>

 

# df -h

tmpfs                  48G   21G   28G  43% /dev/shm

 

출처 : egloos.zum.com/repository/v/5812005

Posted by 셋부터넷
,