[Linux Server] jdk(java) 설치
Jdk/Apache/Tomcat/Apache&Tomcat 연동/SSL(Https) 중
첫번째 jdk 설치.
설치 전 사항 : selinux disabled
파일 생성 하는 것은 그대로 두고...수정하는 것은 .bak로 원본파일 복사!!
설치전 패키지 설치 및 업데이트
rpm으로 설치 하려고 하는 패키지가 있는지 확인!!(java/jdk/tomcat/apache/http)
「rpm으로 JAVA 설치 되어 있는지 확인」
[root@localhost qual]# rpm -qa |grep java
[root@localhost qual]#
위 와 같이 없으면 되지만 있다면 rpm -e --nodeps로 지우면 됩니다.
1. JDK 다운로드
「http://www.oracle.com/technetwork/java/javase/downloads/index.html 오라클 홈페이지에서 다운받습니다.」
지금 버전이 JDK 9까지 나왔네요..제가 설치할 버전은 6입니다.
2. jdk 설치 & /etc/profile 수정
[root@www qual] # chmod +x jdk-6u25-linux-i586.bin -----------> 쓰기 권한부여
[root@www qual] # ./jdk-6u25-linux-i586.bin -----------> 실행
./jdk-6u25-linux-i586.bin 후 엔터 한번!
[root@www qual] # mv jdk1.6.0_25 /usr/local/src/java -----------> 파일 이동
[root@www qual] # cp /etc/profile /etc/profile.bak -----------> profile 파일 백업
[root@www qual] # vi /etc/profile -----------> profile 환경설정
JAVA_HOME=/usr/local/src/java
export JAVA_HOME
PATH=$PATH:$JAVA_HOME/bin
CLASSPATH=$CLASSPATH:$JAVA_HOME/lib/*:.
추가한 후 저장하고 나온다.
[root@www qual] # source /etc/profile -----------> 현재 쉘의 환경변수가 재설정 된다
[root@www qual] # java –version 해서 에러없이 버전 정보 나오면 설치 성공
(/etc/profile 설정만 잘 해주면 된다.)
끝..jdk는 상당히 쉽습니다.
'Linux' 카테고리의 다른 글
[Linux Server] 3. tomcat 설치 & /etc/profile 수정 (0) | 2017.10.16 |
---|---|
[Linux Server] apache 설치 & /etc/profile 수정(gcc 설치 확인) (0) | 2017.10.14 |
[Linux Server] OpenSSH Source Compile (2) | 2017.10.11 |
[Linux Server] OpenSSL source compile (0) | 2017.10.08 |
[MicroServer G7 N54L] LINUX WOL 기능 활성화!! (0) | 2016.11.08 |