[2021-04-28 수] TIL
서버 배포
cd sidedish/
java -jar demo-0.0.1-SNAPSHOT.jar
sudo apt-get install -y nohup
nohup java -jar demo-0.0.1-SNAPSHOT.jar & >> log.txt
tail -f nohup.out // 로그 마지막줄만 출력
ps -ef | grep java
tail -f nohup.out
- EC2 가 느려서 로컬 컴퓨터에서 빌드 작업 후 FTP를 통해서 EC2 서버에 jar파일을 넣어주었다.
~/build/libs/jar파일
cd sidedish/
java -jar demo-0.0.1-SNAPSHOT.jar
sudo apt-get install -y nohup
nohup java -jar demo-0.0.1-SNAPSHOT.jar & >> log.txt
tail -f nohup.out // 로그 마지막줄만 출력
ps -ef | grep java
tail -f nohup.out
~/build/libs/jar파일
-
FTP ↔ EC2
-
nohup.out
을 통해서 spring의 로그의 밑부분만 확인할 수 있다.
Author And Source
이 문제에 관하여([2021-04-28 수] TIL), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@san/2021-04-28-수-TIL저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)