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 | 31 |
Tags
- GIT
- vscode
- plugin
- context
- IntelliJ
- maVen
- 네트워크
- port
- netsh
- Windows 10
- xargs
- tomcat
- 줄바꿈 문자
- lsof
- bash
- profile
- JavaScript
- 단축키
- Eclipse
- Mac
- grep
- Source
- Windows
- import
- find
- ssh
- VirtualBox
- Quartz
- web.xml
- resource
Archives
- Today
- Total
develog
[macOS] JDK 설치 경로 본문
설치된 JDK 찾기
/usr/libexec/java_home -V
brew list | grep 'jdk'
macOS 에서 JDK 설치 경로
# 시스템 경로
/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/bin/java -version
# 사용자 경로
/Users/<USER>/Library/Java/JavaVirtualMachines/temurin-17.0.9/Contents/Home/bin/java -version
# homebrew 경로
/opt/homebrew/Cellar/openjdk@17/17.0.12/libexec/openjdk.jdk/Contents/Home/bin/java -version
JDK 삭제하기
# 해당 경로에 들어가서 삭제할 버전의 파일과 폴더를 삭제한다
rm -rf ~/Library/Java/JavaVirtualMachines/.temurin-17.0.12.intellij
rm -rf ~/Library/Java/JavaVirtualMachines/temurin-17.0.12/
Comments