일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- Bandit Level 6 → Level 7
- 스크럼기법
- vue
- 명령어공부
- plsql
- 변수명 짓는법
- 시스템 파악
- 커맨드공부
- OpenAPI
- springboot
- avax.net.ssl.SSLHandshakeException:
- java.sql.SQLRecoverableException
- table scan
- Bandit Level 6
- SQLRecoverableException
- was버그
- 클린코드
- was SQLRecoverableException
- 디미터 법칙
- 프로토타입 모형
- Bandit Level 5
- 인증서만료에러
- mysql 튜닝
- pl/sql
- CSS
- Law of Demeter
- 나선형 모형
- 폭포수 모형
- 시스템 파악 정리
- 에자일 모형
- Today
- Total
목록개발/버그 해결 기록 (6)
개발햄비
이슈. 오라클 11g에 접속이 안되는 현상이 발생 java.sql.SQLRecoverableException: IO Error: Connection reset 원인 11g JDBC 드라이버를 사용시에는 connect string을 암호화하기 위해서 /dev/random을 이용해서 40byte의 난수를 생성한 다음에 connect string을 암호화 한다고 합니다. 그런데 /dev/random은 변동이 적은 시스템에서는 난수 생성이 중단(block)된다는 문제점이 발생한 이력이 있고 /dev/random의 OS level문제 때문에 시스템이 조용하면 /dev/random이용시 난수생성이 원할하지 않아서 /dev/random으로부터 40byte의 난수를 얻지못한 JDBC는 connect string을 암호..
Q. javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path validation failed: java.security.cert.CertPathValidatorException: validity check failed 1. 에러내용 javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path validation failed: java.security.cert.CertPathValidatorException: validity check failed 2. 원인 인증서 만료일자가 지났을 경우 발생 3. 해결..
아래와 같은 오류 발생 internal/modules/cjs/loader.js:615 throw err; ^ Error: Cannot find module 'semver' at Function.Module._resolveFilename (internal/modules/cjs/loader.js:613:15) at Function.Module._load (internal/modules/cjs/loader.js:539:25) at Module.require (internal/modules/cjs/loader.js:667:17) at require (internal/modules/cjs/helpers.js:20:18) at Object. (/Users/ihanbi/Desktop/vue_SpringBoot/fro..
$ curl -X POST -u "apikey:apikey" --header "Content-Type:application/json" --data "{\"input\": {\"text\": \"Hello\"}}" "https://gateway.watsonplatform.net/assistant/api/v1/workspaces/{workspace_id}/message?version=2019-02-28" $ -u "apikey:{apikey} 를 header로 날리기 위해 base64 encoding 이 필요했다. 해결 방안 $ echo "$(echo -n 'apikey: 넣고자 하는 API_KEY | base64)" 를 날리면 다음과 같이 변화가 된다. YXBpa2V5OkNXTWMtOHF5NFI1QV9SV..
페이스북 챗봇 연습을 위해 heroku서버에 올리는 도중 다음과 같은 에러가 발생하였다. Delta compression using up to 8 threads Compressing objects: 100% (1006/1006), done. Writing objects: 100% (1045/1045), 1.49 MiB | 815.00 KiB/s, done. Total 1045 (delta 159), reused 0 (delta 0) remote: Compressing source files... done. remote: Building source: remote: remote: -----> App not compatible with buildpack: https://github.com/kr/heroku-..
결합 테스트를 후 모든 게 정상이었던 시스템에 갑자기 Exception에러가 발생하였다. org.springframework.dao.DataAccessResourceFailureException: could not execute query; nested exception is org.hibernate.exception.JDBCConnectionException: could not execute query The last packet successfully received from the server was 35,986,917 milliseconds ago. The last packet sent successfully to the server was 22 milliseconds ago. at sun.ref..