Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 자료구조
- SQL 내장 함수
- 선언적 배포
- 쿠버네티스 패턴
- Exception Handing
- 웹 애플리케이션 요청 흐름
- image 압축
- 포함 관계
- 특정 행
- Port already in use: 9999
- REST 성숙도 모델
- 폐쇄망
- Oracle.DatabaseError
- docker
- 예외 전가
- redis 명령어
- 도커
- abstract 제어자
- redis 외부설정
- apt-rdepends
- 객체
- 예측 범위 내의 요구사항
- kafkaCLI
- 의존성 설치
- 특정 행 출력
- 의존성 패키지 설치
- ubuntu redis
- redis 설정
- 웹 애플리케이션 아키텍처
- 오프라인 설치
Archives
- Today
- Total
리꾸므
H2-console 에러(feat.webAllowOthers) 본문
오늘의 일
H2로 DB변경 요청을 받아서 변경하고 배포했는데! 아니 글쎄? 안되네?
다행히 한줄 추가로 끝나는 쉬운 일이었다. 그래도 킵!
오류
H2 Console Sorry, remote connections ('webAllowOthers') are disabled on this server.
원인
서버 배포할시 위와 같은 에러메시지가 뜨고 h2_console 접속이 차단
해결
application.properties에 spring.h2.console.settings.web-allow-others= true 한줄 추가!
pring.h2.console.enabled=true
//밑에 한줄만 추가하면 끝!
spring.h2.console.settings.web-allow-others= true
spring.datasource.url=jdbc:h2:mem:springcoredb
spring.datasource.username=sa
spring.datasource.password=
'발걸음 > 오류창고' 카테고리의 다른 글
Airflow 관련 오류 모음 (0) | 2023.01.25 |
---|---|
[Spring boot]Web server failed to start. Port 8080 was already in use (0) | 2022.11.30 |
Redis 외부접속 오류(feat. protected mode) (0) | 2022.09.22 |
ould not execute statement; SQL~오류 (0) | 2022.08.29 |
17번째 발자국_Spring_Sequrity_WebSecurityConfigurerAdapter_지원중단 (0) | 2022.08.22 |