jdk1.8 혹은 그 이상 버전 설치되어있어야 한다.
// wget 없으면 설치
# yum install wget
// wget을 이용해서 gradle.zip 가져오기
# wget https://services.gradle.org/distributions/gradle-7.0.2-bin.zip
// /opt/gradle 디렉토리 생성
# mkdir /opt/gradle
// 압축푼 파일 /opt/gradle 경로로 이동
# unzip -d /opt/gradle gradle-7.0.2-bin.zip
// unzip 설치
# yum install unzip
# yum list unzip
or
# rpm -qa | grep unzip
cd /opt/gradle/gradle-7.0.2
// 디렉토리 확인
# ls -al
drwxr-xr-x. 2 root root 38 Feb 1 1980 bin
drwxr-xr-x. 2 root root 24 Feb 1 1980 init.d
drwxr-xr-x. 3 root root 8192 Feb 1 1980 lib
-rw-r--r--. 1 root root 23606 Feb 1 1980 LICENSE
-rw-r--r--. 1 root root 803 Feb 1 1980 NOTICE
-rw-r--r--. 1 root root 976 Feb 1 1980 README
vi /etc/profile.d/gradle.sh
// 내용 입력
# etc/profile.d/gradle.sh
export GRADLE_HOME=/opt/gradle/gradle-7.0.2
export PATH=${GRADLE_HOME}/bin:${PATH}
chmod +x /etc/profile.d/gradle.sh
설정 후 명령어 입력
source /etc/profile.d/gradle.sh
# gradle -v
------------------------------------------------------------
Gradle 7.0.2
------------------------------------------------------------
Build time: 2021-05-14 12:02:31 UTC
Revision: 1ef1b260d39daacbf9357f9d8594a8a743e2152e
Kotlin: 1.4.31
Groovy: 3.0.7
Ant: Apache Ant(TM) version 1.10.9 compiled on September 27 2020
JVM: 11.0.11 (Red Hat, Inc. 11.0.11+9-LTS)
OS: Linux 3.10.0-1062.12.1.el7.x86_64 amd64