docker
#Java install
code-server - terminal
$ sudo su
root@[Current Path]# apt-get update
root@[Current Path]# apt-get install wget
path
root@[Current Path]# sudo nano /etc/profile
최 하단에
export JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64
export PATH=$JAVA_HOME/bin/:$PATH
export CLASS_PATH=$JAVA_HOME/lib:$CLASS_PATH
저장 - ctrl+w
저장형식(mac) - alt + m
닫기 - ctrl + x
path 수정사항 적용
root@[Current Path]#source /etc/profile
ERROR:
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2021-03-09 17:39:45.568 ERROR 1434 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter :
***************************
APPLICATION FAILED TO START
***************************
Description:
Web server failed to start. Port 8080 was already in use.
Action:
Identify and stop the process that's listening on port 8080 or configure this application to listen on another port.
8080 프로세스를 사용하고 있는 경우 해당 프로세스 확인하고 종료(kill)
netstat -tulpn
kill -9 [pid]
예)
kill -9 812
참고
vscode java spring boot build test - www.youtube.com/watch?v=3p1JHQWslho
docker 컨테이너 Java 설치 - devham76.github.io/etc/docker_3hangle/
docker java openJdk 설치 및 path 설정 - lsjsj92.tistory.com/394
apt-get install wget error - itzone.tistory.com/610
'Server' 카테고리의 다른 글
[AIX] crontab 명령어, cron log 확인, 재기동 방법 (0) | 2024.01.26 |
---|---|
AIX netstat 명령어 - 포트 오픈 여부 확인하는 방법 (0) | 2023.10.31 |
AIX 포트번호로 프로세스 정보 확인하기 (0) | 2023.10.31 |
AIX CPU,메모리 사용현황 조회 / 메모리사용률 PROCESS 나열 (0) | 2021.10.06 |