Linux125 EC2 java-11-amazon-correto 설치 ### 해당 java는 java11 jdk이다. yum install java-11-amazon-corretto.x86_64 ### version 확인 java -version #### 아래 방법으로도 가능 # aws correto 다운로드 sudo curl -L https://corretto.aws/downloads/latest/amazon-corretto-11-x64-linux-jdk.rpm -o jdk11.rpm # jdk 11 설치 sudo yum install jdk11.rpm # jdk version 선택 sudo /usr/sbin/alternatives --config java # java 버전 확인 java --version # 다운받은 설치 패키지 제거 rm -rf ./jdk11.rpm 2023. 12. 23. nagios plugin, nrpe yum 설치 #### yum 을 통한 Nagios Plugin, nrpe 설치 yum install -y epel-release yum install nagios-plugins-all nrpe -y * nagios home Directory : /usr/lib64/nagios/plugins/ * nrpe config 파일 : /etc/nagios/nrpe.cfg 2023. 12. 23. 리눅스 Nodejs 설치 yum install epel-release yum install nodejs ### 특정 버전 설치 yum install -y curl curl -sL https://rpm.nodesource.com/setup_14.x | sudo bash - yum install -y nodejs node -v node를 설치하면 npm은 자동으로 설치 된다. 2021. 3. 19. pip psycopg2 설치 #### 패키지 설치 yum install python-devel postgresql-devel #### psycopg2 설치 pip instsll psycopg2 2021. 3. 19. 이전 1 ··· 8 9 10 11 12 13 14 ··· 32 다음