백엔드 개발자

이클립스 프로젝트 본문

카테고리 없음

이클립스 프로젝트

임잠탱 2023. 4. 15. 16:48

수업 때 배운 프로젝트를 집에와서 내 노트북으로 실행을 하려하니 오류가 났다.

그래서 우선 디비연동이 안된 것부터 해결하기위해 설치된 mysql을 지워주고 다시 설치해주었다.

mysql워크벤치도 8.0.31버전으로 다시 설치해주었다. (기존 8.0.32버전)

brew uninstall mysql

# 폴더 제거
$ rm -rf /opt/homebrew/var/mysql

-> mysql 삭제 후 관련 폴더 제거.

새로 설치한 후 사용할 새로운 유저를 생성해주었다.

create user 'test'@'localhost' identified by '0000';

grant all privileges on \*.\* to '사용자'@'localhost';

권한 부여.

 

ps -ef | grep mysql

kill -9 "PID"

-> 잘 안되어서 활성화된 mysql관련된 것들을 첫번째 명령어로 검색해주고, 나온 것들을 다 kill 해주었다.

 

# mysql 설치 경로로 이동
$ cd /opt/homebrew/Cellar/mysql/8.0.30_1/support-files

# 서버 파일 직접 시작
$ ./mysql.server start

-> mysql.server start 로 시작이 안되어서 위 방법으로 시작해주었더니 잘 해결 되었다.

 

 

다음으로 프로젝트 문제에 대해서는 자바도 다시 설치하고 여러가지 하였는데 마지막에 서버로 사용할 톰캣을 다시 설치해주어 해결하였다.

 

 

 톰캣 설치

https://tomcat.apache.org/

 

Apache Tomcat® - Welcome!

The Apache Tomcat® software is an open source implementation of the Jakarta Servlet, Jakarta Server Pages, Jakarta Expression Language, Jakarta WebSocket, Jakarta Annotations and Jakarta Authentication specifications. These specifications are part of the

tomcat.apache.org

 

자바 zulu 설치

 

https://www.azul.com/downloads/?package=jdk#zulu

Comments