# Error
-
WebLogic 12.2.1.4 에서 spring-boot application 배포# Error 2024. 1. 3. 10:00
weblogic 12.2.1.4 version에서 spring-boot application 배포 시 servlet 버전 호환 관련 에러 문의 회신 드립니다. #01. 증상 웹 어플리케이션을 배포 시, "string value '4.0' is not a valid enumeration value for web-app-versionType in namespace http://java.sun.com/xml/ns/javaee" 에러 발생 ########################################################### VALIDATION PROBLEMS WERE FOUND /[weblogic_도메인경로]/weblogic.utils.classloaders.GenericClassLoade..
-
ORA-28001: the password has expired# Error 2023. 8. 9. 15:38
[root@egov ~]# su - oracle [oracle@egov ~] $ cd /home/oracle [oracle@egov ~] $ sqlplus Enter user-name : 입력 후 엔터 Enter password : 입력 후 엔터 ORA-28001: the password has expired Changing password for 'database' New password: 변경 할 패스워드 입력 후 엔터 Password changed
-
Weblogic 이중화 된 Managed Server 기동불가 시# Error 2023. 6. 28. 10:38
java.io.IOException: [DeploymentService:290066]Error occurred while downloading files from Administration Server for deployment request "1,072,577,490,279". Underlying error is: "[DeploymentService:290065]Deployment service servlet encountered an Exception while handling the deployment datatransfer message for request id "1,072,577,490,279" from server "M2". Exception is: "files list is empty"."..
-
Weblogic console 변경 내용 활성화 시 에러# Error 2023. 2. 16. 15:45
AdminServer Name을 변경 후 console에서 변경 내용 활성화 시 아래와같은 화면이 뜨며 변경 내용 활성화가 되지 않는다. 아래는 로그의 내용이다. 1. weblogic 해당 domain의 하의 디렉토리 권한을 모두 현재 weblogic 엔진의 권한으로 변경해준다. $ su - $ cd [WEBLOGIC_DOMAIN]/.. $ chown -R [username]:[groupname] [WEBLOGIC_DOMAIN] 2. 변경한 AdminServer 이름이 내부 config파일 내용에 모두 치환 되었는지 확인한다. 조회 명령어 : find ./ -name "*.sh" | xargs grep "192.168.56.198" 치환 명령어 : find . -name "*" -exec sed -i '..
-
Weblogic11g, 12c로 Domain Upgrade 시 에러# Error 2023. 2. 3. 11:26
domainUgrade.py readDomainForUpgrade('/sw/was/weblogic/test/domains/base_domain'); updateDomain(); closeDomain(); exit(); 12c 엔진의 wlst.sh 로 11g의 도메인(/sw/was/weblogic/test/domains/base_domain)을 업그레이드 하려고 할시, 위와같은 에러가남. 1. Weblogic11g domain경로의 init-info 디렉토리내에 domain-info.xml 내용 수정 $ vi [Weblogic11g_doamin]/init-info/ domain-info.xml 2. 아래의 내용 추가 3.업그레이드 진행 참고 Document 2778711.1 (oracle.com)
-
weblogic.security.SecurityInitializationException: Auth entication for user denied# Error 2023. 1. 3. 13:39
서버기동시 아래와같은 에러발생을 하며 기동이 되질 않는다. 인증이 거부되었다는 에러로 boot.properties 파일이 ${DOMAIN_HOME}/servers/${SERVER_NAME}/security/boot.properties 경로에 제대로 생성되었는지 아니면 기동스크립트안에 boot.properties가 잘 물리고 올라가게 설정되어 있는지 확인이 필요하다. 웹로직 설치 후 처음으로 startWeblogic.sh 로 기동시 ${DOMAIN_HOME}/servers/${SERVER_NAME}/security경로에 boot.properties 파일이 생성되게 되는데이 파일을 복사하여 DOMAIN_HOME 경로로 가져온다. cp ${DOMAIN_HOME}/servers/${SERVER_NAME}/sec..