미리 준비(Prerequisites)
Java JDK 버전 8이상 설치 필요
Gradle 설치
Gradle은 간편한 yum 설치가 안된다.
설치방법 : "Package Manager를 이용한 설치" or "수동(manually) 설치"
수동설치 가이드
Step1. Download the latest Gradle distribution.
# wget https://services.gradle.org/distributions/gradle-7.2-bin.zip
Step2. Unpack the distribution
# mkdir /opt/gradle
# unzip -d /opt/gradle gradle-7.2-bin.zip
# ls /opt/gradle/gradle-7.2
bin init.d lib LICENSE NOTICE getting-started.html media
Step3. Configure your system environment
스크립트 생성
# vi /etc/profile.d/gradle.sh
export GRADLE_HOME=/opt/gradle/gradle-7.2
export PATH=${GRADLE_HOME}/bin:${PATH}
스크립트 실행 가능하도록 설정
# chmod +x /etc/profile.d/gradle.sh
스크립트 적용
# source /etc/profile.d/gradle.sh
Step4. verify your installation
# gradle -v
-------------------------------------------------
Gradle 7.2
-------------------------------------------------
'IT Knowledge > 기타' 카테고리의 다른 글
Linux Systemd 서비스 escape 문자(CentOS) (0) | 2021.12.22 |
---|---|
[Linux] 일반계정 Sudoers 사용하기 (0) | 2021.12.22 |
리눅스 vi 줄번호 표시 (0) | 2021.08.19 |
Nginx 디렉토리 지정 설치 (0) | 2021.08.19 |
SSH 로그인 RSA방식(공개키-개인키) (0) | 2021.07.20 |
댓글