반응형
jdk-6u37-linux-x64.bin 파일 설치 후 java 버전 확인 시 아래 에러 발생
Error occurred during initialization of VM
Unable to load native library: libnsl.so.1: cannot open shared object file: No such file or directory
$ yum install -y libnsl
설치 시 해결됨
$ vim /etc/profile
export JAVA_HOME=/usr/local/jdk1.6.0_37
export PATH=$JAVA_HOME/bin:$PATH
export CLASSPATH=$JAVA_HOME/lib:$CLASSPATH
$ source /etc/profile
$ java -version
java version "1.6.0_37"
Java(TM) SE Runtime Environment (build 1.6.0_37-b06)
Java HotSpot(TM) 64-Bit Server VM (build 20.12-b01, mixed mode)
728x90
'[개발관련] > 서버(리눅스 외)' 카테고리의 다른 글
[LINUX] root/일반 계정 su 제한, 해제하는 방법 (0) | 2020.05.08 |
---|---|
CP 명령어 옵션 (0) | 2020.05.08 |
[CentOS] su 명령어 wheel 그룹에게만 허용하기 (0) | 2020.05.08 |
[리눅스]주기적 작업실행 데몬 cron, anacron (0) | 2020.04.17 |
리눅스 크론 cron 실행 시 다른 계정/nologin 계정으로 실행 (0) | 2020.03.31 |