반응형
1) Java 경로, jvm 위치 확인
## java명령어 및 jvm 경로 확인
[node1 ~]$ which java ## 1. java 명령어 경로 확인
/usr/bin/java
[node1 ~]$ ls -l /usr/bin/java
lrwxrwxrwx 1 root root 22 Feb 2 13:05 /usr/bin/java -> /etc/alternatives/java
[node1 ~]$ ls -l /etc/alternatives/java ## 2. 링크파일의 원래 경로 "/usr/lib/jvm/~ 하위를 확인 가능"
lrwxrwxrwx 1 root root 73 Feb 2 13:05 /etc/alternatives/java -> /usr/lib/jvm/java-1.8.0-openjdk-1.8.0.362.b08-1.el7_9.x86_64/jre/bin/java
jvm의 위치가 " /usr/lib/jvm/java-1.8.0-openjdk-1.8.0.362.b08-1.el7_9.x86_64/xxx"로 확인 됨.
2. jvm 위치에 cacerts 파일 확인
3. keytool로 keystore list 확인
## keystore key list 확인 (default password: changeit)
[node1 security]$ keytool -list -keystore \
"/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.362.b08-1.el7_9.x86_64/jre/lib/security/cacerts"
Enter keystore password:
### --storepaas 옵션으로, 패스워드 입력창 없이 확인 가능
[node1 security]$ keytool -list -keystore \
"/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.362.b08-1.el7_9.x86_64/jre/lib/security/cacerts" \
–storepass changeit
. keylist 확인 결과
반응형
'프로그래밍 > java' 카테고리의 다른 글
HashMap 순회 에러 방지 (0) | 2025.01.02 |
---|---|
hashset, treeset 비교 (0) | 2024.12.22 |
hashmap vs treemap 비교 (1) | 2024.12.21 |
이클립스 주요 단축키 (0) | 2022.12.30 |
printf() 출력 (0) | 2022.12.21 |