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
- ClassNotFoundException
- containsKey
- oracle error
- containsValue
- 국비학원 후기
- java문법
- 비전공개발자
- sql developer logon denied
- kh정보교육원 후기
- 국비학원 추천
- 국비학원
- 스택
- 파이썬
- spring mvc 기초
- 비전공 국비학원
- 개발자면접질문
- 그리디알고리즘
- it국비학원 후기
- java17
- 비전공 개발자
- ORA-91917
- 소수점출력
- ip란
- 예제
- Jpa기초
- 큐
- 최신java
- 비전공개발자취업
- SQLD교재추천
- 코딩테스트
Archives
- Today
- Total
Developer J
XAMPP Port Error - Port8080 in use by 본문
반응형
- XAMPP는 Apache(웹서버)와 MySQL(데이터 베이스)을 한번에 가지고 있는 패키지이다.
- React와 SpringBoot를 활용해서 게시판을 만들기 위해 환경을 세팅하던 중 발생한 에러이다.
- 그림에서와 같이 빨간색으로 error문구가 나온다.
오후 1:57:34 [Tomcat] Problem detected!
오후 1:57:34 [Tomcat] Port 8080 in use by "C:\oraclexe\app\oracle\product\11.2.0\server\BIN\tnslsnr.exe"!
오후 1:57:34 [Tomcat] Tomcat WILL NOT start without the configured ports free!
오후 1:57:34 [Tomcat] You need to uninstall/disable/reconfigure the blocking application
오후 1:57:34 [Tomcat] or reconfigure Tomcat and the Control Panel to listen on a different port
- 내용을 읽어보면 port를 oracle에서 사용중인 것을 알 수 있다.
- Window + R -> cmd를 실행 -> netstat -ano를 입력 -> 사용중인 포트 확인한다.
- 해결 방법!!
- Run SQL Command Line을 실행
- 관리자로 연결
- conn /as sysdba
- 현재 포트확인
- select dbms_xdb.gethttpport() from dual;
- 포트변경 내장프로시져 실행
- exec dbms_xdb.sethttpport(9090);
반응형
'개발자 되기 part1 > Error' 카테고리의 다른 글
java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListener (0) | 2022.04.16 |
---|---|
error: cannot find symbol Lombok 에러 (1) | 2021.03.11 |
[Node.js] warning package.json: No license field 해결 (0) | 2020.12.24 |
[npm] npm WARN saveError ENOENT: no such file or directory, open... (0) | 2020.08.25 |
[React Error] npm start 에러 및 해결방법 (0) | 2020.07.28 |